Class SeriesMapping
This class represents the data mappings associated with a single chart series.
Inheritance
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class SeriesMapping : DependencyObject
Constructors
SeriesMapping()
Fields
ChartAreaNameProperty
Identifies the ChartAreaName dependency property.
Declaration
public static readonly DependencyProperty ChartAreaNameProperty
Field Value
System.Windows.DependencyProperty
|
ChartAreaProperty
Identifies the ChartArea dependency property.
Declaration
public static readonly DependencyProperty ChartAreaProperty
Field Value
System.Windows.DependencyProperty
|
CollectionIndexProperty
Identifies the CollectionIndex dependency property.
Declaration
public static readonly DependencyProperty CollectionIndexProperty
Field Value
System.Windows.DependencyProperty
|
FilterDescriptorsProperty
Identifies the FilterDescriptors dependency property.
Declaration
public static readonly DependencyProperty FilterDescriptorsProperty
Field Value
System.Windows.DependencyProperty
|
GroupingSettingsProperty
Identifies the GroupingSettings dependency property.
Declaration
public static readonly DependencyProperty GroupingSettingsProperty
Field Value
System.Windows.DependencyProperty
|
ItemMappingsProperty
Identifies the ItemMappings dependency property.
Declaration
public static readonly DependencyProperty ItemMappingsProperty
Field Value
System.Windows.DependencyProperty
|
ItemsSourceProperty
Identifies the ItemsSource dependency property.
Declaration
public static readonly DependencyProperty ItemsSourceProperty
Field Value
System.Windows.DependencyProperty
|
LegendLabelProperty
Identifies the LegendLabel dependency property.
Declaration
public static readonly DependencyProperty LegendLabelProperty
Field Value
System.Windows.DependencyProperty
|
SeriesDefinitionProperty
Identifies the SeriesDefinition dependency property.
Declaration
public static readonly DependencyProperty SeriesDefinitionProperty
Field Value
System.Windows.DependencyProperty
|
SortDescriptorsProperty
Identifies the SortDescriptors dependency property.
Declaration
public static readonly DependencyProperty SortDescriptorsProperty
Field Value
System.Windows.DependencyProperty
|
Properties
ChartArea
Gets or sets the ChartArea that will display the data series described by the respective SeriesMapping).
Declaration
public ChartArea ChartArea { get; set; }
Property Value
ChartArea
|
Remarks
This property allows to use the databinding functionality with any defined ChartArea and not only the default one. Note, however, that if you are using the default layout of the control (i.e. the default ChartArea), you do not need to set this property.
ChartAreaName
Gets or sets the name of the ChartArea that will display the data series described by the respective SeriesMapping).
Declaration
public string ChartAreaName { get; set; }
Property Value
System.String
|
Remarks
This property allows to use the databinding functionality with any defined ChartArea and not only the default one. Note, however, that if you are using the default layout of the control (i.e. the default ChartArea), you do not need to set this property. This property is useful primarily in declarative scenarios where you are composing the SeriesMapping in XAML.
CollectionIndex
When used, this property allows the chart to be data bound to a collection/array nested inside another collection/array. The index used is the index of the internal collection inside the ItemsSource.
Declaration
public int CollectionIndex { get; set; }
Property Value
System.Int32
The index of the internal collection. |
FilterDescriptors
Gets the filter descriptors collection for this SeriesMapping.
Declaration
public ChartFilterDescriptorCollection FilterDescriptors { get; }
Property Value
ChartFilterDescriptorCollection
|
GroupingSettings
Gets the grouping settings. The grouping settings are used to allow data grouping and aggregation.
Declaration
public GroupingSettings GroupingSettings { get; set; }
Property Value
GroupingSettings
The grouping settings. |
ItemMappings
Gets the item mappings that constitute the data mappings for a single chart series.
Declaration
public ItemMappingCollection ItemMappings { get; }
Property Value
ItemMappingCollection
|
ItemsSource
Gets or sets a collection used to generate the DataSeries, corresponding to this SeriesMapping object. This is a dependency property.
Declaration
public object ItemsSource { get; set; }
Property Value
System.Object
|
LegendLabel
Gets or sets the label associated with the chart series.
Declaration
public string LegendLabel { get; set; }
Property Value
System.String
|
Remarks
The label is displayed in the associated legend item for the respective chart series.
SeriesDefinition
Gets or sets the series definition for the respective chart series.
Declaration
public ISeriesDefinition SeriesDefinition { get; set; }
Property Value
ISeriesDefinition
The series definition. |
SortDescriptors
Gets the sort descriptors collection for this SeriesMapping.
Declaration
public ChartSortDescriptorCollection SortDescriptors { get; }
Property Value
ChartSortDescriptorCollection
|