ClassOhlcDataPoint
An Open-High-Low-Close data point.
Definition
Namespace:Telerik.Charting
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
public class OhlcDataPoint : CategoricalDataPointBase, INotifyPropertyChanged
Inheritance: objectPropertyBagObjectChartNodeDataPointCategoricalDataPointBaseOhlcDataPoint
Implements:
Inherited Members
Constructors
OhlcDataPoint()
Initializes a new instance of the OhlcDataPoint class.
Declaration
public OhlcDataPoint()
Properties
Close
Gets or sets the close value associated with the point.
Declaration
[TypeConverter(typeof(StringToDoubleConverter))]
public double Close { get; set; }
Property Value
High
Gets or sets the high value associated with the point.
Declaration
[TypeConverter(typeof(StringToDoubleConverter))]
public double High { get; set; }
Property Value
IsFalling
Gets a value indicating whether this instance is falling (Bearish).
IsInPlotRange
Determines whether the data point may be plotted correctly.
Declaration
public override bool IsInPlotRange { get; }
Property Value
Overrides
IsRising
Gets a value indicating whether this instance is rising (Bullish).
Low
Gets or sets the low value associated with the point.
Declaration
[TypeConverter(typeof(StringToDoubleConverter))]
public double Low { get; set; }
Property Value