Struct Hlc
Represents a struct, which defines a set of three values - High, Low, Close.
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public struct Hlc
Constructors
Hlc(Double, Double, Double)
Initializes a new instance of the Hlc structure.
Declaration
public Hlc(double high, double low, double close)
Parameters
System.Double
high
The high value. |
System.Double
low
The low 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. |