Class PolarRadarSeriesBase

    Show / Hide Table of Contents

    Class PolarRadarSeriesBase

    Inheritance
    System.Object
    ChartSeries
    DataMarkerSeries
    PolarRadarSeriesBase
    PolarSeries
    Implements
    ISupportAxes
    Inherited Members
    DataMarkerSeries.ShowDataLabelsProperty
    DataMarkerSeries.OnApplyTemplate()
    DataMarkerSeries.ShowDataLabels
    ChartSeries.SpacingProperty
    ChartSeries.TooltipTemplateProperty
    ChartSeries.EnableTooltipProperty
    ChartSeries.ListenPropertyChangeProperty
    ChartSeries.IsSeriesVisibleProperty
    ChartSeries.XBindingPathProperty
    ChartSeries.ItemsSourceProperty
    ChartSeries.TrackballLabelTemplateProperty
    ChartSeries.FillProperty
    ChartSeries.LabelProperty
    ChartSeries.LegendIconProperty
    ChartSeries.LegendIconTemplateProperty
    ChartSeries.IsVisibleOnLegendProperty
    ChartSeries.EnableAnimationProperty
    ChartSeries.AnimationDurationProperty
    ChartSeries.PaletteBrushesProperty
    ChartSeries.StrokeProperty
    ChartSeries.StrokeThicknessProperty
    ChartSeries.SuspendNotification()
    ChartSeries.ResumeNotification()
    ChartSeries.OnPointerPressed(PointerRoutedEventArgs)
    ChartSeries.OnPointerMoved(PointerRoutedEventArgs)
    ChartSeries.OnPointerExited(PointerRoutedEventArgs)
    ChartSeries.OnPointerReleased(PointerRoutedEventArgs)
    ChartSeries.PaletteBrushes
    ChartSeries.TooltipTemplate
    ChartSeries.EnableTooltip
    ChartSeries.ListenPropertyChange
    ChartSeries.IsSeriesVisible
    ChartSeries.ItemsSource
    ChartSeries.TrackballLabelTemplate
    ChartSeries.Fill
    ChartSeries.Label
    ChartSeries.LegendIcon
    ChartSeries.LegendIconTemplate
    ChartSeries.IsVisibleOnLegend
    ChartSeries.XBindingPath
    ChartSeries.EnableAnimation
    ChartSeries.AnimationDuration
    ChartSeries.StrokeThickness
    ChartSeries.Chart
    ChartSeries.Stroke
    ChartSeries.PropertyChanged
    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 DataLabelSettings dependency property.

    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
    • MainWindow.xaml
    • MainWindow.cs
    <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>
    SfPolarChart chart = new SfPolarChart();
    
    ViewModel viewmodel = new ViewModel();
    
    //omitted for brevity
    PolarAreaSeries series = new PolarAreaSeries();
    series.ItemsSource = viewmodel.Data;
    series.XBindingPath = "XValue";
    series.YBindingPath = "YValue";
    series.ShowDataLabels = true;
    chart.Series.Add(series);
    
    series.DataLabelSettings = new PolarDataLabelSettings();

    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 True.

    Remarks

    If its true, series path will be closed; otherwise opened.

    Examples
    • MainWindow.xaml
    • MainWindow.cs
    <chart:SfPolarChart>
    
        <!--omitted for brevity-->
    
        <chart:PolarAreaSeries ItemsSource="{Binding Data}" 
                               XBindingPath="XValue"
                               YBindingPath="YValue"
                               IsClosed="True"/>
    
    </chart:SfPolarChart>
    SfPolarChart chart = new SfPolarChart();
    
    ViewModel viewmodel = new ViewModel();
    
    //omitted for brevity
    PolarAreaSeries series = new PolarAreaSeries();
    series.ItemsSource = viewmodel.Data;
    series.XBindingPath = "XValue";
    series.YBindingPath = "YValue";
    series.IsClosed = true;
    chart.Series.Add(series);

    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
    • MainWindow.xaml
    • MainWindow.cs
    <chart:SfPolarChart>
    
        <!--omitted for brevity-->
    
        <chart:PolarLineSeries ItemsSource="{Binding Data}" 
                               XBindingPath="XValue"
                               YBindingPath="YValue"
                               StrokeDashArray="5,3"/>
    
    </chart:SfPolarChart>
    SfPolarChart chart = new SfPolarChart();
    
    ViewModel viewmodel = new ViewModel();
    
    // omitted for brevity
    PolarLineSeries series = new PolarLineSeries();
    series.ItemsSource = viewmodel.Data;
    series.XBindingPath = "XValue";
    series.YBindingPath = "YValue";
    chart.Series.Add(series);
    
    DoubleCollection doubleCollection = new DoubleCollection();
    doubleCollection.Add(5);
    doubleCollection.Add(3);
    series.StrokeDashArray = doubleCollection;

    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
    • MainWindow.xaml
    • MainWindow.cs
    <chart:SfPolarChart>
    
        <!--omitted for brevity-->
    
        <chart:PolarAreaSeries ItemsSource="{Binding Data}" 
                               XBindingPath="XValue"
                               YBindingPath="YValue"/>
    
    </chart:SfPolarChart>
    SfPolarChart chart = new SfPolarChart();
    
    ViewModel viewmodel = new ViewModel();
    
    //omitted for brevity
    PolarAreaSeries series = new PolarAreaSeries();
    series.ItemsSource = viewmodel.Data;
    series.XBindingPath = "XValue";
    series.YBindingPath = "YValue";
    chart.Series.Add(series);

    Methods

    OnTapped(TappedRoutedEventArgs)

    Declaration
    protected override void OnTapped(TappedRoutedEventArgs e)
    Parameters
    Type Name Description
    Microsoft.UI.Xaml.Input.TappedRoutedEventArgs e
    Overrides
    ChartSeries.OnTapped(TappedRoutedEventArgs)

    Explicit Interface Implementations

    ISupportAxes.ActualXAxis

    Gets ActualXAxis property.

    Declaration
    ChartAxis ISupportAxes.ActualXAxis { get; }
    Returns
    Type Description
    ChartAxis

    It takes the ChartAxis value.

    ISupportAxes.ActualYAxis

    Gets ActualYAxis property.

    Declaration
    ChartAxis ISupportAxes.ActualYAxis { get; }
    Returns
    Type Description
    ChartAxis

    It takes the ChartAxis value.

    Implements

    ISupportAxes
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved