Class OhlcDataPoint
An Open-High-Low-Close data point.
Inheritance
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class OhlcDataPoint : CategoricalDataPointBase, INotifyPropertyChanged, IDataPoint
Constructors
OhlcDataPoint()
Properties
Close
Gets or sets the close value associated with the point.
Declaration
public double Close { get; set; }
Property Value
System.Double
|
High
Gets or sets the high value associated with the point.
Declaration
public double High { get; set; }
Property Value
System.Double
|
IsFalling
Gets a value indicating whether this instance is falling (Bearish).
Declaration
public bool IsFalling { get; }
Property Value
System.Boolean
|
IsInPlotRange
Determines whether the data point may be plotted correctly.
Declaration
public override bool IsInPlotRange { get; }
Property Value
System.Boolean
|
Overrides
IsRising
Gets a value indicating whether this instance is rising (Bullish).
Declaration
public bool IsRising { get; }
Property Value
System.Boolean
|
Low
Gets or sets the low value associated with the point.
Declaration
public double Low { get; set; }
Property Value
System.Double
|
Open
Gets or sets the open value associated with the point.
Declaration
public double Open { get; set; }
Property Value
System.Double
|