New to Telerik UI for WPFStart a free 30-day trial

Represents CartesianSeries which may visualize CategoricalDataPoint objects in RadPolarChart.

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

C#
public class RadarPointSeries : PolarSeries, IChartElementPresenter

Inheritance: objectRadControlBasePresenterBaseChartElementPresenterChartSeriesPointTemplateSeriesPolarSeriesRadarPointSeries...

Derived Classes: RadarLineSeries

Implements: IChartElementPresenter

Inherited Members PolarSeries.ValueBindingPropertyPolarSeries.LegendSettingsPropertyPolarSeries.OnAttached()PolarSeries.OnDetached(RadChartBase)PolarSeries.OnMouseEnter(MouseEventArgs)PolarSeries.OnMouseLeave(MouseEventArgs)PolarSeries.ValueBindingPolarSeries.LegendSettingsPointTemplateSeries.PointTemplatePropertyPointTemplateSeries.PointTemplateSelectorPropertyPointTemplateSeries.DefaultVisualStylePropertyPointTemplateSeries.DefaultVisualStyleSelectorPropertyPointTemplateSeries.RenderOptionsPropertyPointTemplateSeries.OnLoaded(object, RoutedEventArgs)PointTemplateSeries.OnPlayPointAnimations(bool)PointTemplateSeries.OnApplyTemplate()PointTemplateSeries.GetDataPointVisual(DataPoint)PointTemplateSeries.MeasureNodeOverride(ChartNode, object)PointTemplateSeries.OnRenderOptionsChanged(ChartRenderOptions, ChartRenderOptions)PointTemplateSeries.DefaultVisualStylePointTemplateSeries.DefaultVisualStyleSelectorPointTemplateSeries.PointTemplatePointTemplateSeries.PointTemplateSelectorPointTemplateSeries.PointTemplatesPointTemplateSeries.RenderOptionsChartSeries.SeriesAnimationPropertyChartSeries.PointAnimationPropertyChartSeries.IsSelectedPropertyChartSeries.AllowSelectPropertyChartSeries.TrackBallTemplatePropertyChartSeries.TrackBallInfoTemplatePropertyChartSeries.ItemsSourcePropertyChartSeries.ClipToPlotAreaPropertyChartSeries.DisplayNamePropertyChartSeries.TooltipTemplatePropertyChartSeries.LabelConnectorsSettingsPropertyChartSeries.ShowLabelsPropertyChartSeries.PlaySeriesAnimation()ChartSeries.PlayPointAnimations()ChartSeries.OnPlaySeriesAnimation(bool)ChartSeries.HitTest(Rect)ChartSeries.HitTestDataPoints(Rect)ChartSeries.HitTestElements(Rect)ChartSeries.HitTestElementsCore(Rect)ChartSeries.HitTestDataPointsCore(Rect)ChartSeries.OnVisibilityChanged()ChartSeries.GetLabelConnector(ChartSeriesLabelPositionInfo)ChartSeries.GetDataPointLabels(DataPoint)ChartSeries.SeriesAnimationChartSeries.PointAnimationChartSeries.IsSelectedChartSeries.AllowSelectChartSeries.TrackBallTemplateChartSeries.TrackBallInfoTemplateChartSeries.DisplayNameChartSeries.TooltipTemplateChartSeries.ClipToPlotAreaChartSeries.ItemsSourceChartSeries.LabelConnectorsSettingsChartSeries.LabelDefinitionsChartSeries.ShowLabelsChartSeries.SeriesAnimationCompletedChartSeries.PointAnimationsCompletedChartSeries.DataBindingCompleteChartElementPresenter.OnPropertyChanged(DependencyPropertyChangedEventArgs)ChartElementPresenter.ZIndexChartElementPresenter.ChartPresenterBase.InfinitySizePresenterBase.InfinityPointPresenterBase.RefreshNode(ChartNode)PresenterBase.InvalidatePalette()PresenterBase.RefreshNodeCore(ChartNode)PresenterBase.CreateContentPresenter(object, DataTemplate)PresenterBase.OnInitialized(EventArgs)PresenterBase.RenderSurfaceRadControlBase.OnUnloaded(object, RoutedEventArgs)RadControlBase.IsLoadedRadControlBase.IsTemplateApplied...

Constructors

Initializes a new instance of the RadarPointSeries class.

C#
public RadarPointSeries()

Fields

CategoryBindingProperty

DependencyProperty

Identifies the CategoryBinding property.

C#
public static readonly DependencyProperty CategoryBindingProperty

CombineModeProperty

DependencyProperty

Identifies the CombineMode dependency property.

C#
public static readonly DependencyProperty CombineModeProperty

Properties

Gets or sets the binding that will be used to fill the Category member of the contained data points.

C#
[TypeConverter(typeof(StringToDataPointBindingConverter))]
public DataPointBinding CategoryBinding { get; set; }

Gets or sets the combination mode to be used when data points are plotted.

C#
public ChartSeriesCombineMode CombineMode { get; set; }

Gets the collection of data points associated with the series.

C#
public DataPointCollection<CategoricalDataPoint> DataPoints { get; }

Gets or sets the key that defines in which stack group this series will be included if its CombineMode equals Stack or Stack100.

C#
public object StackGroupKey { get; set; }

Methods

When overridden in a derived class, this method returns the function used to calculate the aggregate values for the Category property.

C#
protected virtual ChartAggregateFunction GetCategoryAggregateFunction()
Returns:

ChartAggregateFunction

When overridden in a derived class, this method returns the function used to calculate the aggregate values for the Value property.

C#
protected virtual ChartAggregateFunction GetValueAggregateFunction()
Returns:

ChartAggregateFunction

Returns class-specific AutomationPeer implementations for the Windows Presentation Foundation (WPF) infrastructure.

C#
protected override AutomationPeer OnCreateAutomationPeer()
Returns:

AutomationPeer

The type-specific AutomationPeer implementation.

Called when ValueBinding has changed.

C#
protected override void OnValueBindingChanged(DataPointBinding oldValue, DataPointBinding newValue)
Parameters:oldValueDataPointBinding

The old value.

newValueDataPointBinding

The new value.

Overrides: PolarSeries.OnValueBindingChanged(DataPointBinding, DataPointBinding)