ClassPolarSeries
Base class for all ChartSeries that may visualize their data points in a circle.
Definition
Namespace:Telerik.Windows.Controls.ChartView
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
public abstract class PolarSeries : PointTemplateSeries, IChartElementPresenter
Inheritance: objectRadControlBasePresenterBaseChartElementPresenterChartSeriesPointTemplateSeriesPolarSeries
Derived Classes:
Implements:
Inherited Members
Constructors
PolarSeries()
Declaration
protected PolarSeries()
Fields
LegendSettingsProperty
Identifies the LegendSettings dependency property.
Declaration
public static readonly DependencyProperty LegendSettingsProperty
Field Value
DependencyProperty
ValueBindingProperty
Identifies the ValueBinding property.
Declaration
public static readonly DependencyProperty ValueBindingProperty
Field Value
DependencyProperty
Properties
LegendSettings
Gets or sets the legend settings.
Declaration
public SeriesLegendSettings LegendSettings { get; set; }
Property Value
ValueBinding
Gets or sets the binding that will be used to fill the Value member of the contained data points.
Declaration
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding ValueBinding { get; set; }
Property Value
Methods
OnAttached()
Occurs when the presenter has been successfully attached to its owning RadChartBase instance.
Declaration
protected override void OnAttached()
Overrides
OnDetached(RadChartBase)
Occurs when the presenter has been successfully detached from its owning RadChartBase instance.
Declaration
protected override void OnDetached(RadChartBase oldChart)
Parameters
oldChart
Overrides
OnMouseEnter(MouseEventArgs)
Invoked when an unhandled attached event is raised on this element. Implement this method to add class handling for this event.
Declaration
protected override void OnMouseEnter(MouseEventArgs e)
Parameters
e
MouseEventArgs
The MouseEventArgs that contains the event data.
OnMouseLeave(MouseEventArgs)
Invoked when an unhandled attached event is raised on this element. Implement this method to add class handling for this event.
Declaration
protected override void OnMouseLeave(MouseEventArgs e)
Parameters
e
MouseEventArgs
The MouseEventArgs that contains the event data.
OnValueBindingChanged(DataPointBinding, DataPointBinding)
Called when ValueBinding has changed.
Declaration
protected virtual void OnValueBindingChanged(DataPointBinding oldValue, DataPointBinding newValue)
Parameters
oldValue
The old value.
newValue
The new value.