Class PolarRadarSeriesBase
Serves as a base class for polar and radar series. This class has options to customize the appearance of polar and radar series.
Inherited Members
Namespace: Syncfusion.SfChart.XForms
Assembly: Syncfusion.SfChart.XForms.dll
Syntax
public abstract class PolarRadarSeriesBase : ChartSeries, IThemeElement
Constructors
PolarRadarSeriesBase()
Initializes a new instance of the PolarRadarSeriesBase class.
Declaration
public PolarRadarSeriesBase()
Fields
DrawTypeProperty
Gets or sets the draw type of radar/polar series. This is a bindable property.
Declaration
public static readonly BindableProperty DrawTypeProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
IsClosedProperty
Gets or sets a value that indicates whether to connect the first and last data point of the series. This is a bindable property.
Declaration
public static readonly BindableProperty IsClosedProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
StrokeColorProperty
Gets or sets the Stroke color of the segment for draw type area. This is a bindable property.
Declaration
public static readonly BindableProperty StrokeColorProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
StrokeDashArrayProperty
Gets or sets the dash array for the line. This is a bindable property.
Declaration
public static readonly BindableProperty StrokeDashArrayProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
YBindingPathProperty
Gets or sets the binding path in ItemsSource. This is a bindable property.
Declaration
public static readonly BindableProperty YBindingPathProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
Properties
DrawType
Gets or sets the draw type of radar/polar series. This is a bindable property.
Declaration
public PolarRadarSeriesDrawType DrawType { get; set; }
Property Value
Type | Description |
---|---|
PolarRadarSeriesDrawType | This property takes the PolarRadarSeriesDrawType value. |
IsClosed
Gets or sets a value indicating whether to connect the first and last data point of the series. This is a bindable property.
Declaration
public bool IsClosed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | This property take the bool value. |
StrokeColor
Gets or sets the stroke color of the segment for draw type area. This is a bindable property.
Declaration
public Color StrokeColor { get; set; }
Property Value
Type | Description |
---|---|
Xamarin.Forms.Color | This property takes the Xamarin.Forms.Color value. |
StrokeDashArray
Gets or sets the stroke dash array to customize the appearance of the line. This is a bindable property.
Declaration
public double[] StrokeDashArray { get; set; }
Property Value
Type | Description |
---|---|
System.Double[] | This property takes double array as its value. |
YBindingPath
Gets or sets the binding path in ItemsSource. This is a bindable property.
Declaration
public string YBindingPath { get; set; }
Property Value
Type | Description |
---|---|
System.String | This property takes the System.String as its value. |
Methods
GetChartDataPoints()
Method used to get the collection of ChartDataPoint which is used to render the polar and radar series.
Declaration
public override IList<ChartDataPoint> GetChartDataPoints()
Returns
Type | Description |
---|---|
System.Collections.Generic.IList<ChartDataPoint> | Collection. |