Class Series3D
This class represents a chart series in the 3D space.
Inherited Members
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class Series3D : ItemsControl3D<Series>, IControl3D, ILogicalItem, IItemsControl
Constructors
Series3D()
Declaration
public Series3D()
Fields
DataPointsProperty
Identifies the DataPoints dependency property.
Declaration
public static readonly DependencyProperty DataPointsProperty
Field Value
System.Windows.DependencyProperty
|
Properties
ChartArea
Gets the ChartArea the current chart item belongs to.
Declaration
public ChartArea ChartArea { get; }
Property Value
ChartArea
The chart area. |
DataPoints
Gets or sets the data points collection associated with the current chart series.
Declaration
public DataSeries DataPoints { get; set; }
Property Value
DataSeries
|
Definition
Gets or sets the series definition associated with the corresponding chart series type.
Declaration
public ISeriesDefinition Definition { get; }
Property Value
ISeriesDefinition
|
LabelsControl
Gets the labels control.
Declaration
protected LabelsControl LabelsControl { get; }
Property Value
LabelsControl
The labels control. |
LabelsData
Gets the labels for the respective axis items.
Declaration
protected IList<LabelData> LabelsData { get; }
Property Value
System.Collections.Generic.IList<LabelData>
|
Methods
AddLabelLayer()
Adds the label layer for the respective series.
Declaration
protected virtual void AddLabelLayer()
DataPointsChanged(DependencyObject, DependencyPropertyChangedEventArgs)
Triggers when data points dependency property is changed.
Declaration
public static void DataPointsChanged(DependencyObject target, DependencyPropertyChangedEventArgs changedEventArgs)
Parameters
System.Windows.DependencyObject
target
|
System.Windows.DependencyPropertyChangedEventArgs
changedEventArgs
|
RemoveLabelLayer()
Removes the label layer for the respective series.
Declaration
protected virtual void RemoveLabelLayer()
SubscribeToPropertyChanged(DataSeries)
Subscribes to the PropertyChanged event associated with the data points collection for the respective series.
Declaration
public void SubscribeToPropertyChanged(DataSeries series)
Parameters
DataSeries
series
|
UnsubscribeToPropertyChanged(DataSeries)
Unsubscribes from the PropertyChanged event associated with the data points collection for the respective series.
Declaration
public void UnsubscribeToPropertyChanged(DataSeries series)
Parameters
DataSeries
series
|