Struct Ohlc
Represents a struct, which defines a set of four values - High, Low, Open, Close.
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public struct Ohlc
Constructors
Ohlc(Double, Double, Double, Double)
Initializes a new instance of the Ohlc structure.
Declaration
public Ohlc(double high, double low, double open, double close)
Parameters
System.Double
high
The high value. |
System.Double
low
The low value. |
System.Double
open
The open value. |
System.Double
close
The close value. |
Properties
Close
Gets or sets the close value.
Declaration
public double Close { get; set; }
Property Value
System.Double
The close value. |
High
Gets or sets the high value.
Declaration
public double High { get; set; }
Property Value
System.Double
The high value. |
Low
Gets or sets the low value.
Declaration
public double Low { get; set; }
Property Value
System.Double
The low value. |
Open
Gets or sets the open value.
Declaration
public double Open { get; set; }
Property Value
System.Double
The open value. |