Class PolarSeries
Inherited Members
Namespace: Com.Syncfusion.Charts
Assembly: Syncfusion.SfChart.Android.dll
Syntax
public class PolarSeries : ChartSeries
Constructors
PolarSeries()
Initializes a new instance of the PolarSeries class.
Declaration
public PolarSeries()
Properties
ActualXAxis
Declaration
public override ChartAxis ActualXAxis { get; }
Property Value
Type |
---|
ChartAxis |
Overrides
ActualYAxis
Declaration
public override ChartAxis ActualYAxis { get; }
Property Value
Type |
---|
ChartAxis |
Overrides
Closed
Gets or sets a value indicating whether to connect the first and last data point of the series.
Declaration
public bool Closed { get; set; }
Property Value
Type |
---|
System.Boolean |
DrawType
Gets or sets the draw type of polar/radar series.
Declaration
public PolarChartDrawType DrawType { get; set; }
Property Value
Type |
---|
PolarChartDrawType |
PathEffect
Gets or sets the PathEffect of the PolarSeries.
Declaration
public DashPathEffect PathEffect { get; set; }
Property Value
Type |
---|
Android.Graphics.DashPathEffect |
StrokeColor
Gets or sets the stroke color for series.
Declaration
public Color StrokeColor { get; set; }
Property Value
Type |
---|
Android.Graphics.Color |
YBindingPath
Gets or sets a value that indicates y-value binding path for chart series.
Declaration
public string YBindingPath { get; set; }
Property Value
Type |
---|
System.String |
Methods
CreateSegment()
Create the instance of the segment based on the PolarChartDrawType.
Declaration
protected override ChartSegment CreateSegment()
Returns
Type | Description |
---|---|
ChartSegment | Returns a segment. |
Overrides
CreateSegments()
Creates the segments of polar/radar series.
Declaration
protected override void CreateSegments()
Overrides
GetDataPointIndex(Single, Single)
Gets the data point index under x and y coordinates.
Declaration
public override int GetDataPointIndex(float pointX, float pointY)
Parameters
Type | Name | Description |
---|---|---|
System.Single | pointX | point x value. |
System.Single | pointY | point y value. |
Returns
Type | Description |
---|---|
System.Int32 | The index value of the data point. |
Overrides
Remarks
Returns -1 if no data is at the given point.
OnBindingPathChanged()
Declaration
protected override void OnBindingPathChanged()
Overrides
SetFillColor(ChartSegment)
Declaration
protected override void SetFillColor(ChartSegment segment)
Parameters
Type | Name | Description |
---|---|---|
ChartSegment | segment |