Reputation: 2347
I'm using highstocks in an Angular web application to display a chart with multiple series. After updating to the latest firefox version (64.0) the HTML tooltip stopped displaying. It still works well in google chrome, but for some reason firefox does not display the tooltip.
Does anyone know how to fix this?
Upvotes: 1
Views: 322
Reputation: 422
Yes, it is a known issue with this version of Firefox. See Higchart Issue.
In my case I could solve it by disabling animation:
chart = new Highcharts.Chart({
chart: {
animation: false;
...
},
...
plotOptions: {
series: {
animation: false;
}
}
}
Try it!
Upvotes: 0
Reputation: 11
setting stickyTracking: true for firefox fixed it for me. could not solve this with stickyTracking: false
what I saw though is that FF renders the chart differently.
Upvotes: 1