Struct SeriesErrorPoint
- Namespace
- LightningChartLib.WinForms.Charting
- Assembly
- LightningChart.WinForms.Charting.NET4.dll
Series point with error tolerance.
public struct SeriesErrorPoint : IColoredPoint
- Implements
- Inherited Members
Constructors
SeriesErrorPoint(double, double)
Constructor, with error bar values set to 0.
public SeriesErrorPoint(double x, double y)
Parameters
SeriesErrorPoint(double, double, double, double, double, double)
Constructor.
public SeriesErrorPoint(double x, double y, double errorXMinus, double errorXPlus, double errorYMinus, double errorYPlus)
Parameters
xdoubleX value.
ydoubleY value.
errorXMinusdoubleError bar X, to negative direction.
errorXPlusdoubleError bar X, to positive direction.
errorYMinusdoubleError bar Y, to negative direction.
errorYPlusdoubleError bar Y, to positive direction.
SeriesErrorPoint(double, double, double, double, double, double, Color)
Constructor.
public SeriesErrorPoint(double x, double y, double errorXMinus, double errorXPlus, double errorYMinus, double errorYPlus, Color color)
Parameters
xdoubleX value.
ydoubleY value
errorXMinusdoubleError bar X, to negative direction.
errorXPlusdoubleError bar X, to positive direction.
errorYMinusdoubleError bar Y, to negative direction.
errorYPlusdoubleError bar Y, to positive direction.
colorColorColor of the point. For more information see Color property.
SeriesErrorPoint(double, double, double, double, double, double, object)
Constructor.
public SeriesErrorPoint(double x, double y, double errorXMinus, double errorXPlus, double errorYMinus, double errorYPlus, object tag)
Parameters
xdoubleX value.
ydoubleY value.
errorXMinusdoubleError bar X, to negative direction.
errorXPlusdoubleError bar X, to positive direction.
errorYMinusdoubleError bar Y, to negative direction.
errorYPlusdoubleError bar Y, to positive direction.
tagobjectTag, freely assignable object.
SeriesErrorPoint(double, double, double, double, double, double, object, Color)
Constructor.
public SeriesErrorPoint(double x, double y, double errorXMinus, double errorXPlus, double errorYMinus, double errorYPlus, object tag, Color color)
Parameters
xdoubleX value.
ydoubleY value.
errorXMinusdoubleError bar X, to negative direction.
errorXPlusdoubleError bar X, to positive direction.
errorYMinusdoubleError bar Y, to negative direction.
errorYPlusdoubleError bar Y, to positive direction.
tagobjectTag, freely assignable object.
colorColorColor of the point. For more information see Color property.
SeriesErrorPoint(double, double, Color)
Constructor, with error bar values set to 0.
public SeriesErrorPoint(double x, double y, Color color)
Parameters
xdoubleX value.
ydoubleY value.
colorColorColor of the point. For more information see Color property.
SeriesErrorPoint(double, double, object)
Constructor, with error bar values set to 0.
public SeriesErrorPoint(double x, double y, object tag)
Parameters
SeriesErrorPoint(double, double, object, Color)
Constructor, with error bar values set to 0.
public SeriesErrorPoint(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
ErrorXMinus
X amount to X-axis reverse direction
public double ErrorXMinus
Field Value
ErrorXPlus
X amount to X-axis positive direction.
public double ErrorXPlus
Field Value
ErrorYMinus
Y amount to Y-axis reverse direction.
public double ErrorYMinus
Field Value
ErrorYPlus
Y amount to Y-axis positive direction.
public double ErrorYPlus
Field Value
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.