Highcharts (highstocks) tooltip does not work on latest firefox 64.0 with useHTML=true

风流意气都作罢 提交于 2019-12-11 06:19:35

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!