Remove hover tooltip from Google Visualization pie chart (core chart)

Shumon Saha picture Shumon Saha · Nov 22, 2011 · Viewed 31.3k times · Source

How to remove hover tooltip from Google Visualization pie chart (core chart)? Need to make it work cross-browser, eg, IE, FF, Chrome, Safari, Opera

enter image description here

Edit: I need the slices to be be clickable too.
enableInteractivity : false removes the hovers but doens't throw 'select' or other interaction-based events.

Answer

Sir_Faenor picture Sir_Faenor · Dec 13, 2011

Maybe you need to add this to your chart's options

'tooltip' : {
  trigger: 'none'
}

In this way you can leave enableInteractivity set to true.