Class FinancialSeriesBase
Serves as a base class for all types of financial series such as HiLoOpenClose series and Candle series.
Inherited Members
Namespace: Syncfusion.SfChart.XForms
Assembly: Syncfusion.SfChart.XForms.dll
Syntax
public abstract class FinancialSeriesBase : CartesianSeries, IThemeElement
Constructors
FinancialSeriesBase()
Initializes a new instance of the FinancialSeriesBase class.
Declaration
public FinancialSeriesBase()
Fields
BearFillColorProperty
Gets or sets the color of the segments that satisfies bear sign. This is a bindable property.
Declaration
public static readonly BindableProperty BearFillColorProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
BullFillColorProperty
Gets or sets the color of the segments that satisfies bull sign. This is a bindable property.
Declaration
public static readonly BindableProperty BullFillColorProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
CloseProperty
Gets or sets the Close
binding path in Items source. This is a bindable property.
Declaration
public static readonly BindableProperty CloseProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
HighProperty
Gets or sets the High
binding path in Items source for financial series. This is a bindable property.
Declaration
public static readonly BindableProperty HighProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
LowProperty
Gets or sets the Low
binding path in Items source for financial series. This is a bindable property.
Declaration
public static readonly BindableProperty LowProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
NameProperty
Gets or sets the Name
binding path in Items source. This is a bindable property.
Declaration
public static readonly BindableProperty NameProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
OpenProperty
Gets or sets the Open
binding path in Items source. This is a bindable property.
Declaration
public static readonly BindableProperty OpenProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
Properties
BearFillColor
Gets or sets the color of the segments that satisfies bear sign. This is a bindable property.
Declaration
public Color BearFillColor { get; set; }
Property Value
Type | Description |
---|---|
Xamarin.Forms.Color | This property takes the Xamarin.Forms.Color as its value. |
BullFillColor
Gets or sets the color of the segments that satisfies bull sign. This is a bindable property.
Declaration
public Color BullFillColor { get; set; }
Property Value
Type | Description |
---|---|
Xamarin.Forms.Color | This property takes the Xamarin.Forms.Color as its value. |
Close
Gets or sets the Close
binding path in Items source. This is a bindable property.
Declaration
public string Close { get; set; }
Property Value
Type | Description |
---|---|
System.String | This property takes the System.String as its value. |
High
Gets or sets the High
binding path in Items source for financial series. This is a bindable property.
Declaration
public string High { get; set; }
Property Value
Type | Description |
---|---|
System.String | This property takes the System.String as its value. |
Low
Gets or sets the Low
binding path in Items source for financial series. This is a bindable property.
Declaration
public string Low { get; set; }
Property Value
Type | Description |
---|---|
System.String | This property takes the System.String as its value. |
Name
Gets or sets the series name which is used to map with technical indicators.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | This property takes the System.String as its value. |
Open
Gets or sets the Open
binding path in Items source. This is a bindable property.
Declaration
public string Open { 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 HiLoOpenCloseSeries and CandleSeries.
Declaration
public override IList<ChartDataPoint> GetChartDataPoints()
Returns
Type | Description |
---|---|
System.Collections.Generic.IList<ChartDataPoint> | Collection. |