Hello!
I am working on a project that uses Highcharts, specifically the React (https://github.com/highcharts/highcharts-react) wrapper. I am finding most things very simple to configure, but am having issues trying to understand what exactly to do in order to achieve my goal.
I've noticed that Highcharts tooltips and mouseOver interactions work for the "closest" series/point, but I would like my chart to have a precise mouse over, or at least being able to change the range of how it judges the nearest series. For example, it would be amazing to be able to specify either 0 for a precise range, or a small px value for a near-precise mouse over interaction. This is specifically because I have charts that use the selected/active ability with shared tooltips. Here is a visualization:
This is a demo I have been playing around with trying to better understand: https://jsfiddle.net/9fyz3p2k/8/.
Essentially my question is about how to enable `stickyTracking` for a line's point, so that when hovering over a point, it can set other lines across series to inactive, but display the tooltip across the series.
- stickyTracking ON for the line - so that I can toggle series inactivity/selected series
- stickyTracking OFF for the chart - so that I can have a tooltip shared across the series.
Thanks!