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

Series descriptor for choosing between scatter point / line / spline or scatter bubble series.

Definition

Constructors

C#
public CustomScatterSeriesDescriptor()

Fields

BubbleSizeValuePathProperty

DependencyProperty

Identifies the BubbleSizeValuePath dependency property.

C#
public static readonly DependencyProperty BubbleSizeValuePathProperty

Properties

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

C#
public string BubbleSizeValuePath { 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 ScatterPointSeries instance.

Overrides: ScatterSeriesDescriptor.CreateInstanceCore(object)