Table of Contents

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

x double

X value.

y double

Y value.

SeriesErrorPoint(double, double, double, double, double, double)

Constructor.

public SeriesErrorPoint(double x, double y, double errorXMinus, double errorXPlus, double errorYMinus, double errorYPlus)

Parameters

x double

X value.

y double

Y value.

errorXMinus double

Error bar X, to negative direction.

errorXPlus double

Error bar X, to positive direction.

errorYMinus double

Error bar Y, to negative direction.

errorYPlus double

Error 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

x double

X value.

y double

Y value

errorXMinus double

Error bar X, to negative direction.

errorXPlus double

Error bar X, to positive direction.

errorYMinus double

Error bar Y, to negative direction.

errorYPlus double

Error bar Y, to positive direction.

color Color

Color 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

x double

X value.

y double

Y value.

errorXMinus double

Error bar X, to negative direction.

errorXPlus double

Error bar X, to positive direction.

errorYMinus double

Error bar Y, to negative direction.

errorYPlus double

Error bar Y, to positive direction.

tag object

Tag, 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

x double

X value.

y double

Y value.

errorXMinus double

Error bar X, to negative direction.

errorXPlus double

Error bar X, to positive direction.

errorYMinus double

Error bar Y, to negative direction.

errorYPlus double

Error bar Y, to positive direction.

tag object

Tag, freely assignable object.

color Color

Color 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

x double

X value.

y double

Y value.

color Color

Color 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

x double

X value.

y double

Y value.

tag object

Tag, freely assignable object.

SeriesErrorPoint(double, double, object, Color)

Constructor, with error bar values set to 0.

public SeriesErrorPoint(double x, double y, object tag, Color color)

Parameters

x double

X value.

y double

Y value.

tag object

Tag, freely assignable object.

color Color

Color of the point. For more information see Color property.

Fields

ErrorXMinus

X amount to X-axis reverse direction

public double ErrorXMinus

Field Value

double

ErrorXPlus

X amount to X-axis positive direction.

public double ErrorXPlus

Field Value

double

ErrorYMinus

Y amount to Y-axis reverse direction.

public double ErrorYMinus

Field Value

double

ErrorYPlus

Y amount to Y-axis positive direction.

public double ErrorYPlus

Field Value

double

Tag

Tag. Freely assignable object.

public object Tag

Field Value

object

X

X value.

public double X

Field Value

double

Y

Y value.

public double Y

Field Value

double

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

Color

Methods

ToString()

Convert class description to string.

public override string ToString()

Returns

string

Class description as a string.