Struct SeriesPoint
- Namespace
- LightningChartLib.WinForms.Charting
- Assembly
- LightningChart.WinForms.Charting.NET4.dll
Series point.
public struct SeriesPoint : IColoredPoint
- Implements
- Inherited Members
Constructors
SeriesPoint(double, double)
Constructor.
public SeriesPoint(double x, double y)
Parameters
SeriesPoint(double, double, Color)
Constructor.
public SeriesPoint(double x, double y, Color color)
Parameters
xdoubleX value.
ydoubleY value.
colorColorColor of the point. For more information see Color property.
SeriesPoint(double, double, object)
Constructor.
public SeriesPoint(double x, double y, object tag)
Parameters
SeriesPoint(double, double, object, Color)
Constructor.
public SeriesPoint(double x, double y, object tag, Color color)
Parameters
xdoubleX value.
ydoubleY value.
tagobjectTag, freely assignable object.
colorColorColor of the point. For more information see Color property.
Fields
Tag
Tag. Freely assignable object.
public object Tag
Field Value
X
X value.
public double X
Field Value
Y
Y value.
public double Y
Field Value
Properties
PointColor
Color of the point. This is used only if the series PointStyles IndividiualPointColor is not set to Off.
public Color PointColor { get; set; }
Property Value
Methods
ToString()
Convert class description to string.
public override string ToString()
Returns
- string
Class description as a string.