Class ChartSeriesDescriptor
Represents an abstract definition of a Chart
Inheritance
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class ChartSeriesDescriptor : DependencyObject
Constructors
ChartSeriesDescriptor()
Declaration
public ChartSeriesDescriptor()
Fields
ChartDataSourceStyleProperty
Identifies the Chart
Declaration
public static readonly DependencyProperty ChartDataSourceStyleProperty
Field Value
System.
|
CollectionIndexProperty
Identifies the Collection
Declaration
public static readonly DependencyProperty CollectionIndexProperty
Field Value
System.
|
ItemsSourcePathProperty
Identifies the Items
Declaration
public static readonly DependencyProperty ItemsSourcePathProperty
Field Value
System.
|
StyleProperty
Identifies the Style dependency property.
Declaration
public static readonly DependencyProperty StyleProperty
Field Value
System.
|
TypeConverterProperty
Identifies the Type
Declaration
public static readonly DependencyProperty TypeConverterProperty
Field Value
System.
|
TypePathProperty
Identifies the Type
Declaration
public static readonly DependencyProperty TypePathProperty
Field Value
System.
|
Properties
ChartDataSourceStyle
Gets or sets the ChartDataSourceStyle.
Declaration
public Style ChartDataSourceStyle { get; set; }
Property Value
System.
|
CollectionIndex
Gets or sets the index within the Source collection of data (view models) for which the current descriptor should be used.
This property is useful when for example a Bar
Declaration
public int CollectionIndex { get; set; }
Property Value
System.
|
DefaultType
Gets the default type of series that are to be created if no TypePath and no Style properties are specified.
Declaration
public virtual Type DefaultType { get; }
Property Value
System.
|
ItemsSourcePath
Gets or sets the name of the property that points to the items source that will feed the generated series.
Declaration
public string ItemsSourcePath { get; set; }
Property Value
System.
|
Style
Gets or sets the Style that describes the appearance of the series that are to be created. If no TypePath is specified, the TargetType property of this style object is used to generate the desired series.
Declaration
public Style Style { get; set; }
Property Value
System.
|
TypeConverter
Gets or sets a converter that can be used to provide the exact type of the series that should be created.
Declaration
public IValueConverter TypeConverter { get; set; }
Property Value
System.
|
TypePath
Gets or sets the name of the property that points to the series type that needs to be created.
Declaration
public string TypePath { get; set; }
Property Value
System.
|
Methods
CreateDefaultInstance(Object)
Provides the default implementation for the Create
Declaration
protected ChartSeries CreateDefaultInstance(object context)
Parameters
System.
|
Returns
CreateInstance(Object)
Creates an instance of the Chart
Declaration
public ChartSeries CreateInstance(object context)
Parameters
System. The context (this is the raw data collection or the data view model) for which a Chart |
Returns
CreateInstanceCore(Object)
Core entry point for creating the Chart
Declaration
protected virtual ChartSeries CreateInstanceCore(object context)
Parameters
System. The context (this is the raw data collection or the data view model) for which a Chart |