PolarSeries
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
protected PolarSeries()
Fields
LegendSettingsProperty
DependencyProperty
Identifies the LegendSettings dependency property.
public static readonly DependencyProperty LegendSettingsProperty
ValueBindingProperty
DependencyProperty
Identifies the ValueBinding property.
public static readonly DependencyProperty ValueBindingProperty
Properties
Gets or sets the legend settings.
public SeriesLegendSettings LegendSettings { get; set; }
Gets or sets the binding that will be used to fill the Value member of the contained data points.
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding ValueBinding { get; set; }
Methods
Occurs when the presenter has been successfully attached to its owning RadChartBase instance.
protected override void OnAttached()
Overrides:
Occurs when the presenter has been successfully detached from its owning RadChartBase instance.
protected override void OnDetached(RadChartBase oldChart)
Overrides:
Invoked when an unhandled �attached event is raised on this element. Implement this method to add class handling for this event.
protected override void OnMouseEnter(MouseEventArgs e)
The MouseEventArgs that contains the event data.
Invoked when an unhandled �attached event is raised on this element. Implement this method to add class handling for this event.
protected override void OnMouseLeave(MouseEventArgs e)
The MouseEventArgs that contains the event data.
Called when ValueBinding has changed.
protected virtual void OnValueBindingChanged(DataPointBinding oldValue, DataPointBinding newValue)
The old value.
newValueDataPointBindingThe new value.