I want to have a HiLo graph in SyncFusion (with this Flutter plugin), that will look like this :
I can make a hilo chart - but I can't seem to get those white dots to appear - I expected the markerSettings
property to do this but it hasn't.
HiloSeries<Stonk, DateTime>(
markerSettings: MarkerSettings(
isVisible: true,
color: Colors.white,
),
color: Colors.green,
borderWidth: 10,
xValueMapper: (Stonk stonk, _) => stonk.time,
highValueMapper: (Stonk stonk, _) => stonk.high,
lowValueMapper: (Stonk stonk, _) => stonk.low,
dataSource: stonks,
);
This is what I've tried but adding the markerSettings property does not make those white dots appear.
As of now, we don’t have marker support for financial series, and we will provide marker support for hilo series in our upcoming vol 1 SP1 release. However, your requirement can be achieved using the range column series. Here you can enable the markers which can be added to the top and bottom of the bars. The code to achieve this scenario can be found below.
Screenshot
The sample for reference can be found below.
Range column sample