New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Constructors

Initializes a new instance of the HlcDataPoint class.

C#
public HlcDataPoint()

Initializes a new instance of the HlcDataPoint class.

C#
public HlcDataPoint(double high, double low, double close, object category)
Parameters:highdouble

The high.

lowdouble

The low.

closedouble

The close.

categoryobject

The category.

Properties

Gets or sets the close associated with the point.

C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double Close { get; set; }

Gets or sets the high associated with the point.

C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double High { get; set; }

Determines whether the data point may be plotted correctly.

C#
[Browsable(false)]
public override bool IsInPlotRange { get; }

Overrides: CategoricalDataPointBase.IsInPlotRange

Gets or sets the low associated with the point.

C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double Low { get; set; }