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