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
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.
This remove hover event but maintains the click event:
Maybe you need to add this to your chart's options
In this way you can leave enableInteractivity set to true.
set tooltip: { isHtml: true } in option section.
in css file
Use the enableInteractivity = False option. It will disable interaction and hover.