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.
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.Chart.WinUI.dll
Syntax
public class PolarLineSeries : PolarSeries, INotifyPropertyChanged
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, StrokeWidth,
Data Label
To customize the appearance of data labels, refer to the
<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()
Implements
System.ComponentModel.INotifyPropertyChanged