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