Struct
Hlc

Represents a struct, which defines a set of three values - High, Low, Close.

Definition

Namespace:Telerik.Charting

Assembly:Telerik.WinControls.ChartView.dll

Syntax:

cs-api-definition
public struct Hlc

Inherited Members ValueType.Equals(object)ValueType.GetHashCode()ValueType.ToString()

Constructors

Hlc(double, double, double)

Initializes a new instance of the Hlc structure.

Declaration

cs-api-definition
public Hlc(double high, double low, double close)

Parameters

high

double

The high value.

low

double

The low value.

close

double

The close value.

Properties

Close

Gets or sets the close value.

Declaration

cs-api-definition
public double Close { readonly get; set; }

Property Value

double

The close value.

High

Gets or sets the high value.

Declaration

cs-api-definition
public double High { readonly get; set; }

Property Value

double

The high value.

Low

Gets or sets the low value.

Declaration

cs-api-definition
public double Low { readonly get; set; }

Property Value

double

The low value.