Class Series
This class represents a concrete implementation of a chart series in the 2D space.
Inherited Members
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class Series : ItemsControl, IInteractionManager, IInteractiveElement, ILogicalItem, ISeriesControl
Constructors
Series()
Fields
BarItemsPanelProperty
Identifies the BarItemsPanel dependency property.
Declaration
public static readonly DependencyProperty BarItemsPanelProperty
Field Value
System.Windows.DependencyProperty
|
ChartAreaProperty
Identifies the ChartArea dependency property.
Declaration
public static readonly DependencyProperty ChartAreaProperty
Field Value
System.Windows.DependencyProperty
|
DataSeriesProperty
Identifies the DataSeries attached dependency property.
Declaration
public static readonly DependencyProperty DataSeriesProperty
Field Value
System.Windows.DependencyProperty
|
LinearItemsPanelProperty
Identifies the LinearItemsPanel dependency property.
Declaration
public static readonly DependencyProperty LinearItemsPanelProperty
Field Value
System.Windows.DependencyProperty
|
RadialItemsPanelProperty
Identifies the RadialItemsPanel dependency property.
Declaration
public static readonly DependencyProperty RadialItemsPanelProperty
Field Value
System.Windows.DependencyProperty
|
Properties
BarItemsPanel
Gets or sets the property.
Declaration
public ItemsPanelTemplate BarItemsPanel { get; set; }
Property Value
System.Windows.Controls.ItemsPanelTemplate
The property. |
ChartArea
Gets or sets the chart area.
Declaration
public virtual ChartArea ChartArea { get; set; }
Property Value
ChartArea
The chart area. |
DataSeries
Gets or sets the data points collection associated with the current chart series.
Declaration
public virtual DataSeries DataSeries { get; set; }
Property Value
DataSeries
|
LinearItemsPanel
Gets or sets the property.
Declaration
public ItemsPanelTemplate LinearItemsPanel { get; set; }
Property Value
System.Windows.Controls.ItemsPanelTemplate
The property. |
RadialItemsPanel
Gets or sets the property.
Declaration
public ItemsPanelTemplate RadialItemsPanel { get; set; }
Property Value
System.Windows.Controls.ItemsPanelTemplate
The property. |
Methods
ClearContainerForItemOverride(DependencyObject, Object)
When overridden in a derived class, undoes the effects of the System.Windows.Controls.ItemsControl.PrepareContainerForItemOverride(System.Windows.DependencyObject,System.Object) method.
Declaration
protected override void ClearContainerForItemOverride(DependencyObject element, object item)
Parameters
System.Windows.DependencyObject
element
The container element. |
System.Object
item
The item. |
GetContainerForItemOverride()
Creates or identifies the element that is used to display the given item.
Declaration
protected override DependencyObject GetContainerForItemOverride()
Returns
System.Windows.DependencyObject
The element that is used to display the given item. |
IsItemItsOwnContainerOverride(Object)
Determines if the specified item is (or is eligible to be) its own container.
Declaration
protected override bool IsItemItsOwnContainerOverride(object item)
Parameters
System.Object
item
The item to check. |
Returns
System.Boolean
Returns true if the item is (or is eligible to be) its own container; otherwise, false. |
OnApplyTemplate()
When overridden in a derived class, is invoked whenever application code or internal processes call System.Windows.FrameworkElement.ApplyTemplate.
Declaration
public override void OnApplyTemplate()
Overrides
PrepareContainerForItemOverride(DependencyObject, Object)
Prepares the specified element to display the specified item.
Declaration
protected override void PrepareContainerForItemOverride(DependencyObject element, object item)
Parameters
System.Windows.DependencyObject
element
Element used to display the specified item. |
System.Object
item
Specified item. |
Overrides
SubscribeToPropertyChanged(DataSeries)
Subscribes to the PropertyChanged event associated with the data points collection for the respective series.
Declaration
public void SubscribeToPropertyChanged(DataSeries dataSeries)
Parameters
DataSeries
dataSeries
|
UnsubscribeToPropertyChanged(DataSeries)
Subscribes from the PropertyChanged event associated with the data points collection for the respective series.
Declaration
public void UnsubscribeToPropertyChanged(DataSeries dataSeries)
Parameters
DataSeries
dataSeries
|