Class PolarAreaSeries
The PolarAreaSeries is a series that displays data in terms of values and angles using a filled polygon shape. It allows for the visual comparison of several quantitative or qualitative aspects of a situation.
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.Chart.WinUI.dll
Syntax
public class PolarAreaSeries : PolarSeries, INotifyPropertyChanged
Remarks
To render a series, create an instance of polar area series class, and add it to the Series collection.
It provides options for Fill, PaletteBrushes, StrokeWidth, Stroke, and opacity to customize the appearance.
Data Label
To customize the appearance of data labels, refer to the
<chart:SfPolarChart>
<!--omitted for brevity-->
<chart:PolarAreaSeries ItemsSource="{Binding Data}"
XBindingPath="XValue"
YBindingPath="YValue"
ShowDataLabels="True">
<chart:PolarAreaSeries.DataLabelSettings>
<chart:PolarDataLabelSettings />
</chart:PolarAreaSeries.DataLabelSettings>
</chart:PolarAreaSeries>
</chart:SfPolarChart>
Animation
To animate the series, refer to the EnableAnimation property.
<chart:SfPolarChart>
<!--omitted for brevity-->
<chart:PolarAreaSeries ItemsSource="{Binding Data}"
XBindingPath="XValue"
YBindingPath="YValue"
EnableAnimation="True"/>
</chart:SfPolarChart>
LegendIcon
To customize the legend icon, refer to the LegendIcon, LegendIconTemplate, and
Constructors
PolarAreaSeries()
Initializes a new instance of the PolarAreaSeries.
Declaration
public PolarAreaSeries()
Implements
System.ComponentModel.INotifyPropertyChanged