New to Telerik UI for .NET MAUIStart a free 30-day trial

Represents a base class for OHLC (Open, High, Low, Close) series in Cartesian charts.

Definition

Constructors

C#
protected OhlcSeriesBase()

Fields

CategoryBindingProperty

BindableProperty

Identifies the CategoryBinding property.

C#
public static readonly BindableProperty CategoryBindingProperty

CloseBindingProperty

BindableProperty

Identifies the CloseBinding property.

C#
public static readonly BindableProperty CloseBindingProperty

HighBindingProperty

BindableProperty

Identifies the HighBinding property.

C#
public static readonly BindableProperty HighBindingProperty

LowBindingProperty

BindableProperty

Identifies the LowBinding property.

C#
public static readonly BindableProperty LowBindingProperty

OpenBindingProperty

BindableProperty

Identifies the OpenBinding property.

C#
public static readonly BindableProperty OpenBindingProperty

Properties

Gets or sets the binding that will be used to fill the Category member of the contained data points.

C#
public PropertyNameDataPointBinding CategoryBinding { get; set; }

Gets or Sets the binding that will be used for the "Close" value of each data point

C#
public PropertyNameDataPointBinding CloseBinding { get; set; }

Gets or Sets the binding that will be used for the "High" value of each data point

C#
public PropertyNameDataPointBinding HighBinding { get; set; }

Gets or Sets the binding that will be used for the "Low" value of each data point

C#
public PropertyNameDataPointBinding LowBinding { get; set; }

Gets or Sets the binding that will be used for the "Open" value of each data point

C#
public PropertyNameDataPointBinding OpenBinding { get; set; }