Shahar
Shahar

Reputation: 2347

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

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

Answers (2)

rantanplan
rantanplan

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

user3678644
user3678644

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

Related Questions