Class AccumulationSeries
Serves as a base class for all triangular and circular series. This class has options to customize the appearance of triangular and circular series.
Inherited Members
Namespace: Syncfusion.SfChart.XForms
Assembly: Syncfusion.SfChart.XForms.dll
Syntax
public abstract class AccumulationSeries : ChartSeries, IThemeElement
Constructors
AccumulationSeries()
Initializes a new instance of the AccumulationSeries class.
Declaration
public AccumulationSeries()
Fields
ExplodeAllProperty
Gets or sets the value that indicates whether to explode all the segments. This is a bindable property.
Declaration
public static readonly BindableProperty ExplodeAllProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
ExplodeIndexProperty
Gets or sets the index value of the segment to be exploded. This is a bindable property.
Declaration
public static readonly BindableProperty ExplodeIndexProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
ExplodeOnTouchProperty
Gets or sets the value that indicates whether to explode the segment on touch. This is a bindable property.
Declaration
public static readonly BindableProperty ExplodeOnTouchProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
StrokeColorProperty
Gets or sets the stroke color to customize the appearance of AccumulationSeries. This is a bindable property.
Declaration
public static readonly BindableProperty StrokeColorProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
YBindingPathProperty
Gets or sets the binding path in items source. This is a bindable property.
Declaration
public static readonly BindableProperty YBindingPathProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
Properties
ExplodeAll
Gets or sets a value indicating whether whether to explode all the segments. This is a bindable property.
Declaration
public bool ExplodeAll { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | This property take the boolean value. |
ExplodeIndex
Gets or sets the index value of the segment to be exploded. This is a bindable property.
Declaration
public int ExplodeIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | This property take the integer value. |
ExplodeOnTouch
Gets or sets a value indicating whether to explode the segment on touch. This is a bindable property.
Declaration
public bool ExplodeOnTouch { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | This property take the bool value. |
StrokeColor
Gets or sets the stroke color to customize the appearance of AccumulationSeries. 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. |
YBindingPath
Gets or sets the binding path in items source. 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 triangular and circular series.
Declaration
public override IList<ChartDataPoint> GetChartDataPoints()
Returns
Type | Description |
---|---|
System.Collections.Generic.IList<ChartDataPoint> | Collection. |