OHLC/Candlestick point color in tooltips
Default highstock tooltip formatter use color of chart in series name. But OHLC/candlestick has two kind of point colors - color & upColor and tooltip can show one of them for differnet points.
Will be default behaviour since v9.
Related GH ticket: https://github.com/highcharts/highcharts/issues/14826
-
Sergey Bondar commented
For example we could use something like
pointFormat: '<span style="font-size: 10px; color:{point.color}">{series.name}</span><br/>',
where pointColor could be:
- point color (defined in series data)
- or series upColor
- or series colorinstead of
pointFormat: '<span style="font-size: 10px; color:{series.color}">{series.name}</span><br/>',