Struct
Ohlc

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

Definition

Namespace:Telerik.Charting

Assembly:Telerik.WinControls.ChartView.dll

Syntax:

cs-api-definition
public struct Ohlc

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

Constructors

Ohlc(double, double, double, double)

Initializes a new instance of the Ohlc structure.

Declaration

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

Parameters

high

double

The high value.

low

double

The low value.

open

double

The open 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.

Open

Gets or sets the open value.

Declaration

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

Property Value

double

The open value.