Class HlcDataPoint
Inheritance
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class HlcDataPoint : CategoricalDataPointBase, IDisposable, INotifyPropertyChanged
Constructors
HlcDataPoint()
HlcDataPoint(Double, Double, Double, Object)
Initializes a new instance of the HlcDataPoint class.
Declaration
public HlcDataPoint(double high, double low, double close, object category)
Parameters
System.Double
high
The high. |
System.Double
low
The low. |
System.Double
close
The close. |
System.Object
category
The category. |
Properties
Close
Gets or sets the close associated with the point.
Declaration
public double Close { get; set; }
Property Value
System.Double
|
High
Gets or sets the high associated with the point.
Declaration
public double High { get; set; }
Property Value
System.Double
|
IsInPlotRange
Determines whether the data point may be plotted correctly.
Declaration
public override bool IsInPlotRange { get; }
Property Value
System.Boolean
|
Overrides
Low
Gets or sets the low associated with the point.
Declaration
public double Low { get; set; }
Property Value
System.Double
|