BoldDeskWe are launching BoldDesk on Product Hunt soon. Learn more & follow us.
Hi Arian,
Thanks for using Syncfusion products.
Query 1: OHLC chart open & close markers
Thanks for the helping us define this issue. We have changed
the default color of BearFillColor and BullFillColor property. This fix will be
available in our upcoming release.
Query 2: Candle Series
We have analyzed the reported query. We would like to inform
you that we have prepared the workaround for your requirement and this can be
achieved by applying below code snippet.
Code Snippet [C#]:
public class CandleSeriesEXT : CandleSeries
{
public
CandleSeriesEXT()
{
}
public override void CreateSegments()
{
base.CreateSegments();
for (int i = 0; i < this.DataCount; i++)
{
double y1 =
OpenValues[i];
double y2 =
CloseValues[i];
if (y1 < y2)
{
this.Segments[i].Stroke
= this.BullFillColor;
}
else
{
this.Segments[i].Stroke
= this.BearFillColor;
}
}
}
}
Please find the sample in the following location. Please let
us know if you require any further assistance on this.
Regards,
Karthikeyan V.
Sample :