Class PolarSeries
Base class for all ChartSeries that may visualize their data points in a circle.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public abstract class PolarSeries : PointTemplateSeries, IChartElementPresenterWithMargin, IChartSeries, IChartElementPresenter, ISeries
Constructors
PolarSeries()
Declaration
protected PolarSeries()
Fields
LegendSettingsProperty
Identifies the LegendSettings dependency property.
Declaration
public static readonly DependencyProperty LegendSettingsProperty
Field Value
System.Windows.DependencyProperty
|
ValueBindingProperty
Identifies the ValueBinding property.
Declaration
public static readonly DependencyProperty ValueBindingProperty
Field Value
System.Windows.DependencyProperty
|
Properties
LegendSettings
Gets or sets the legend settings.
Declaration
public SeriesLegendSettings LegendSettings { get; set; }
Property Value
SeriesLegendSettings
|
ValueBinding
Gets or sets the binding that will be used to fill the Value member of the contained data points.
Declaration
public DataPointBinding ValueBinding { get; set; }
Property Value
DataPointBinding
|
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
RadChartBase
oldChart
|
Overrides
OnMouseEnter(MouseEventArgs)
Invoked when an unhandled System.Windows.Input.Mouse.MouseEnter 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
System.Windows.Input.MouseEventArgs
e
The System.Windows.Input.MouseEventArgs that contains the event data. |
OnMouseLeave(MouseEventArgs)
Invoked when an unhandled System.Windows.Input.Mouse.MouseLeave 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
System.Windows.Input.MouseEventArgs
e
The System.Windows.Input.MouseEventArgs that contains the event data. |
OnValueBindingChanged(DataPointBinding, DataPointBinding)
Called when ValueBinding has changed.
Declaration
protected virtual void OnValueBindingChanged(DataPointBinding oldValue, DataPointBinding newValue)
Parameters
DataPointBinding
oldValue
The old value. |
DataPointBinding
newValue
The new value. |