ClassRadarPointSeries
Represents CartesianSeries which may visualize CategoricalDataPoint objects in RadPolarChart.
Definition
Namespace:Telerik.Windows.Controls.ChartView
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
public class RadarPointSeries : PolarSeries, IChartElementPresenter
Inheritance: objectRadControlBasePresenterBaseChartElementPresenterChartSeriesPointTemplateSeriesPolarSeriesRadarPointSeries
Derived Classes:
Implements:
Inherited Members
Constructors
RadarPointSeries()
Initializes a new instance of the RadarPointSeries class.
Declaration
public RadarPointSeries()
Fields
CategoryBindingProperty
Identifies the CategoryBinding property.
Declaration
public static readonly DependencyProperty CategoryBindingProperty
Field Value
DependencyProperty
CombineModeProperty
Identifies the CombineMode dependency property.
Declaration
public static readonly DependencyProperty CombineModeProperty
Field Value
DependencyProperty
Properties
CategoryBinding
Gets or sets the binding that will be used to fill the Category member of the contained data points.
Declaration
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding CategoryBinding { get; set; }
Property Value
CombineMode
Gets or sets the combination mode to be used when data points are plotted.
Declaration
public ChartSeriesCombineMode CombineMode { get; set; }
Property Value
DataPoints
Gets the collection of data points associated with the series.
Declaration
public DataPointCollection<CategoricalDataPoint> DataPoints { get; }
Property Value
StackGroupKey
Gets or sets the key that defines in which stack group this series will be included if its CombineMode equals Stack or Stack100.
Methods
GetCategoryAggregateFunction()
When overridden in a derived class, this method returns the function used to calculate the aggregate values for the Category property.
Declaration
protected virtual ChartAggregateFunction GetCategoryAggregateFunction()
Returns
GetValueAggregateFunction()
When overridden in a derived class, this method returns the function used to calculate the aggregate values for the Value property.
Declaration
protected virtual ChartAggregateFunction GetValueAggregateFunction()
Returns
OnCreateAutomationPeer()
Returns class-specific AutomationPeer implementations for the Windows Presentation Foundation (WPF) infrastructure.
Declaration
protected override AutomationPeer OnCreateAutomationPeer()
Returns
AutomationPeer
The type-specific AutomationPeer implementation.
OnValueBindingChanged(DataPointBinding, DataPointBinding)
Called when ValueBinding has changed.
Declaration
protected override void OnValueBindingChanged(DataPointBinding oldValue, DataPointBinding newValue)
Parameters
oldValue
The old value.
newValue
The new value.
Overrides