Class OhlcDataPoint
A High-Low-Open-Close data point.
Inheritance
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class OhlcDataPoint : HlcDataPoint, IDisposable, INotifyPropertyChanged
Constructors
OhlcDataPoint()
OhlcDataPoint(Double, Double, Double, Double, Object)
Initializes a new instance of the OhlcDataPoint class.
Declaration
public OhlcDataPoint(double open, double high, double low, double close, object category)
Parameters
System.Double
open
The open. |
System.Double
high
The high. |
System.Double
low
The low. |
System.Double
close
The close. |
System.Object
category
The category. |
Properties
IsFalling
Gets a value indicating whether this instance is falling (Bearish).
Declaration
public bool IsFalling { get; }
Property Value
System.Boolean
|
IsRising
Gets a value indicating whether this instance is rising (Bullish).
Declaration
public bool IsRising { get; }
Property Value
System.Boolean
|
Open
Gets or sets the open associated with the point.
Declaration
public double Open { get; set; }
Property Value
System.Double
|