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

Represents a concrete ChartSeriesDescriptor that may be used to create all the categorical chart series variations.

Definition

Constructors

C#
public CategoricalSeriesDescriptor()

Fields

ValuePathProperty

DependencyProperty

Identifies the ValuePath dependency property.

C#
public static readonly DependencyProperty ValuePathProperty

Properties

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

C#
public override Type DefaultType { get; }

Overrides: ChartSeriesDescriptor.DefaultType

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

C#
public string ValuePath { 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 CategoricalSeries instance.

Overrides: ChartSeriesDescriptor.CreateInstanceCore(object)