ClassScatterSeriesDescriptor
Represents a concrete ChartSeriesDescriptor that may be used to create all the scatter chart series variations.
Definition
Namespace:Telerik.Windows.Controls.ChartView
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
public class ScatterSeriesDescriptor : ChartSeriesDescriptor
Inheritance: objectChartSeriesDescriptorScatterSeriesDescriptor
Derived Classes:
Inherited Members
Constructors
ScatterSeriesDescriptor()
Declaration
public ScatterSeriesDescriptor()
Fields
XValuePathProperty
Identifies the XValuePath dependency property.
Declaration
public static readonly DependencyProperty XValuePathProperty
Field Value
DependencyProperty
YValuePathProperty
Identifies the YValuePath dependency property.
Declaration
public static readonly DependencyProperty YValuePathProperty
Field Value
DependencyProperty
Properties
DefaultType
Gets the default type of series that are to be created if no TypePath and no Style properties are specified.
Declaration
public override Type DefaultType { get; }
Property Value
Overrides
XValuePath
Gets or sets the name of the property that points to the XValue value of the data point view model.
YValuePath
Gets or sets the name of the property that points to the YValue value of the data point view model.
Methods
CreateInstanceCore(object)
Core entry point for creating the ChartSeries type defined by this descriptor. Allows inheritors to provide custom implementation.
Declaration
protected override ChartSeries CreateInstanceCore(object context)
Parameters
context
The context (this is the raw data collection or the data view model) for which a ChartSeries needs to be created.
Returns
Exceptions
The base implementation fails to create a valid ScatterPointSeries instance.
Overrides