When hovering over the series line on a date-time chart, the default behavior is to trigger the hover event on the nearest point of the series.
However, I only want to trigger the hover event on the markers (points), not the series itself.
If I use stopPropagation on the series hover event, the point hover event is not triggered when directly hovering over a point.
Any suggestions on how to achieve this?
Setting
plotOptions.series.stickyTracking = false
or tooltip.snap = 0
did not resolve the issue.