Class PolarRadarSeriesBase
Implements
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.Chart.WinUI.dll
Syntax
public abstract class PolarRadarSeriesBase : DataMarkerSeries, ISupportAxes
Constructors
PolarRadarSeriesBase()
Initializes a new instance of the PolarRadarSeriesBase class.
Declaration
public PolarRadarSeriesBase()
Fields
DataLabelSettingsProperty
Identifies the DataLabelSettings dependency property.
Declaration
public static readonly DependencyProperty DataLabelSettingsProperty
Field Value
Type | Description |
---|---|
Microsoft.UI.Xaml.DependencyProperty | The identifier for |
IsClosedProperty
Identifies the IsClosed dependency property.
Declaration
public static readonly DependencyProperty IsClosedProperty
Field Value
Type | Description |
---|---|
Microsoft.UI.Xaml.DependencyProperty | The identifier for IsClosed dependency property. |
StrokeDashArrayProperty
Identifies the StrokeDashArray dependency property.
Declaration
public static readonly DependencyProperty StrokeDashArrayProperty
Field Value
Type | Description |
---|---|
Microsoft.UI.Xaml.DependencyProperty | The identifier for StrokeDashArray dependency property. |
YBindingPathProperty
Identifies the YBindingPath dependency property.
Declaration
public static readonly DependencyProperty YBindingPathProperty
Field Value
Type | Description |
---|---|
Microsoft.UI.Xaml.DependencyProperty | The identifier for YBindingPath dependency property. |
Properties
DataLabelSettings
Gets or sets a value to customize the appearance of the displaying data labels in the polar series.
Declaration
public PolarDataLabelSettings DataLabelSettings { get; set; }
Property Value
Type | Description |
---|---|
PolarDataLabelSettings | It takes the PolarDataLabelSettings. |
Remarks
This allows us to change the look of a data point by displaying labels, shapes, and connector lines.
Examples
<chart:SfPolarChart>
<!--omitted for brevity-->
<chart:PolarAreaSeries ItemsSource="{Binding Data}"
XBindingPath="XValue"
YBindingPath="YValue"
ShowDataLabels="True">
<syncfusion:PolarAreaSeries.DataLabelSettings>
<chart:PolarDataLabelSettings />
<syncfusion:PolarAreaSeries.DataLabelSettings>
</chart:PolarAreaSeries>
</chart:SfPolarChart>
IsClosed
Gets or sets a value indicating whether the area path for the polar series should be closed or opened.
Declaration
public bool IsClosed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | It accepts bool values and its default value is |
Remarks
If its true
, series path will be closed; otherwise opened.
Examples
<chart:SfPolarChart>
<!--omitted for brevity-->
<chart:PolarAreaSeries ItemsSource="{Binding Data}"
XBindingPath="XValue"
YBindingPath="YValue"
IsClosed="True"/>
</chart:SfPolarChart>
StrokeDashArray
Gets or sets the Microsoft.UI.Xaml.Media.DoubleCollection value for stroke dash array to customize the stroke appearance of PolarSeries.
Declaration
public DoubleCollection StrokeDashArray { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.UI.Xaml.Media.DoubleCollection | It takes Microsoft.UI.Xaml.Media.DoubleCollection value and the default value is null. |
Examples
<chart:SfPolarChart>
<!--omitted for brevity-->
<chart:PolarLineSeries ItemsSource="{Binding Data}"
XBindingPath="XValue"
YBindingPath="YValue"
StrokeDashArray="5,3"/>
</chart:SfPolarChart>
VisibleXRange
Gets the start and end range values of series x-axis.
Declaration
public DoubleRange VisibleXRange { get; }
Property Value
Type | Description |
---|---|
DoubleRange |
VisibleYRange
Gets the start and end range values of series y-axis.
Declaration
public DoubleRange VisibleYRange { get; }
Property Value
Type | Description |
---|---|
DoubleRange |
YBindingPath
Gets or sets a path value on the source object to serve a y value to the series.
Declaration
public string YBindingPath { get; set; }
Property Value
Type | Description |
---|---|
System.String | The string that represents the property name for the y plotting data, and its default value is null. |
Examples
<chart:SfPolarChart>
<!--omitted for brevity-->
<chart:PolarAreaSeries ItemsSource="{Binding Data}"
XBindingPath="XValue"
YBindingPath="YValue"/>
</chart:SfPolarChart>
Methods
OnTapped(TappedRoutedEventArgs)
Declaration
protected override void OnTapped(TappedRoutedEventArgs e)
Parameters
Type | Name | Description |
---|---|---|
Microsoft.UI.Xaml.Input.TappedRoutedEventArgs | e |
Overrides
Explicit Interface Implementations
ISupportAxes.ActualXAxis
Gets ActualXAxis property.
Declaration
ChartAxis ISupportAxes.ActualXAxis { get; }
Returns
Type | Description |
---|---|
ChartAxis | It takes the |
ISupportAxes.ActualYAxis
Gets ActualYAxis property.
Declaration
ChartAxis ISupportAxes.ActualYAxis { get; }
Returns
Type | Description |
---|---|
ChartAxis | It takes the |