问题
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?
回答1:
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.
回答2:
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!
来源:https://stackoverflow.com/questions/53836603/highcharts-highstocks-tooltip-does-not-work-on-latest-firefox-64-0-with-usehtm