Class CandleSeries
Represents a candle chart. To render candle chart, create an instance of this class and add it to Series collection property and set the required properties.
Inheritance
System.Object
CandleSeries
Inherited Members
Namespace: Com.Syncfusion.Charts
Assembly: Syncfusion.SfChart.Android.dll
Syntax
public class CandleSeries : HiLoOpenCloseSeries
Remarks
CandleSeries requires ItemsSource, XBindingPath, High, Low, Open and Close properties to be set to render the chart. This series also requires x-axis and y-axis to be explicitly set either using PrimaryAxis and SecondaryAxis or XAxis and YAxis.
Constructors
CandleSeries()
Declaration
public CandleSeries()
Properties
EnableSolidCandles
Gets or sets a value indicating whether to enable solid candles.
Declaration
public bool EnableSolidCandles { get; set; }
Property Value
Type |
---|
System.Boolean |
StrokeColor
Gets or sets the color for the series stroke.
Declaration
public Color StrokeColor { get; set; }
Property Value
Type |
---|
Android.Graphics.Color |
Methods
CreateSegment()
Create the CandleSegment.
Declaration
protected override ChartSegment CreateSegment()
Returns
Type | Description |
---|---|
ChartSegment | Returns a segment. |
Overrides
CreateSegment(Double[], Boolean, Boolean)
Declaration
protected override void CreateSegment(double[] values, bool isBull, bool isFill)
Parameters
Type | Name | Description |
---|---|---|
System.Double[] | values | |
System.Boolean | isBull | |
System.Boolean | isFill |