Table of Contents

Struct HighLowSeriesPoint

Namespace
LightningChartLib.WinForms.Charting
Assembly
LightningChart.WinForms.Charting.NET4.dll

HighLow series point.

public struct HighLowSeriesPoint : IColoredPoint
Implements
Inherited Members

Constructors

HighLowSeriesPoint(double, double, double)

Constructor.

public HighLowSeriesPoint(double x, double yHigh, double yLow)

Parameters

x double

X value.

yHigh double

Y high value.

yLow double

Y low value.

HighLowSeriesPoint(double, double, double, Color)

Constructor.

public HighLowSeriesPoint(double x, double yHigh, double yLow, Color color)

Parameters

x double

X value.

yHigh double

Y high value.

yLow double

Y low value.

color Color

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

HighLowSeriesPoint(double, double, double, object)

Constructor.

public HighLowSeriesPoint(double x, double yHigh, double yLow, object tag)

Parameters

x double

X value.

yHigh double

Y high value.

yLow double

Y low value.

tag object

Tag. Freely assignable object.

HighLowSeriesPoint(double, double, double, object, Color)

Constructor.

public HighLowSeriesPoint(double x, double yHigh, double yLow, object tag, Color color)

Parameters

x double

X value.

yHigh double

Y high value.

yLow double

Y low value.

tag object

Tag. Freely assignable object.

color Color

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

Fields

Tag

Tag. Freely assignable object.

public object Tag

Field Value

object

X

X value.

public double X

Field Value

double

YHigh

Y high value.

public double YHigh

Field Value

double

YLow

Y low value.

public double YLow

Field Value

double

Properties

PointColor

Point Color.

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.