StructOhlc
Struct
Represents a struct, which defines a set of four values - High, Low, Open, Close.
Definition
Namespace:Telerik.Charting
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
cs-api-definition
public struct Ohlc
Inherited Members
Constructors
Ohlc(double, double, double, double)
Initializes a new instance of the Ohlc structure.
Properties
Close
Gets or sets the close value.
Declaration
cs-api-definition
public double Close { readonly get; set; }
Property Value
The close value.
High
Gets or sets the high value.
Declaration
cs-api-definition
public double High { readonly get; set; }
Property Value
The high value.
Low
Gets or sets the low value.
Declaration
cs-api-definition
public double Low { readonly get; set; }
Property Value
The low value.
Methods
Operators
operator !=(Ohlc, Ohlc)
Implements the operator !=.