New to Telerik UI for WPFStart a free 30-day trial

Represents a concrete ChartSeriesDescriptor that may be used to create financial series - CandlestickSeries and OhlcSeries.

Definition

Constructors

C#
public OhlcSeriesDescriptor()

Fields

ClosePathProperty

DependencyProperty

Identifies the ClosePath dependency property.

C#
public static readonly DependencyProperty ClosePathProperty

HighPathProperty

DependencyProperty

Identifies the HighPath dependency property.

C#
public static readonly DependencyProperty HighPathProperty

LowPathProperty

DependencyProperty

Identifies the LowPath dependency property.

C#
public static readonly DependencyProperty LowPathProperty

OpenPathProperty

DependencyProperty

Identifies the OpenPath dependency property.

C#
public static readonly DependencyProperty OpenPathProperty

Properties

Gets or sets the name of the property that points to the Close value of the data point view model.

C#
public string ClosePath { get; set; }

Gets the default type of series that are to be created if no Style is specified.

C#
public override Type DefaultType { get; }

Overrides: ChartSeriesDescriptor.DefaultType

Gets or sets the name of the property that points to the High value of the data point view model.

C#
public string HighPath { get; set; }

Gets or sets the name of the property that points to the Low value of the data point view model.

C#
public string LowPath { get; set; }

Gets or sets the name of the property that points to the Open value of the data point view model.

C#
public string OpenPath { get; set; }

Methods

Core entry point for creating the ChartSeries type defined by this descriptor. Allows inheritors to provide custom implementation.

C#
protected override ChartSeries CreateInstanceCore(object context)
Parameters:contextobject

The context (this is the raw data collection or the data view model) for which a ChartSeries needs to be created.

Returns:

ChartSeries

Exceptions:

InvalidOperationException

The base implementation fails to create a valid OhlcSeriesBase instance.

Overrides: ChartSeriesDescriptor.CreateInstanceCore(object)