Corrl
Corrl

Reputation: 7741

How to disable the tooltips on a Google Gantt Chart?

Is there a way to disable the tooltips of a Google Gantt Chart?

The options settings I found as possible solutions don't seem to have an effect with a Gantt Chart

google.charts.load('current', {'packages':['gantt']})

...

chart.draw(data, {   
  tooltip: { trigger: 'none' },
  enableInteractivity: false
});   

or the 'workaround' via

chart.draw(data, {   
  tooltip: { isHtml: true }
});
div.google-visualization-tooltip { display:none }

neither works

Upvotes: 0

Views: 265

Answers (1)

Corrl
Corrl

Reputation: 7741

Since I don't need any user interaction with the chart I helped myself by simply disabling the pointer events on the chart container div

   #chart_div {
        pointer-events: none;
    }

but there might be a better way via the chart settings..?!

Upvotes: 1

Related Questions