I have been trying to figure out if it is possible to disable the default 
onmouseover actions. I want to prevent the hovering action to happen when 
the user hovers over the legend.

Unfortunately, changing enableInteractivity:false completely disables the 
throwing of hover events, so I can't have that.

I have also tried to removeAllListeners() and then adding my own 
onmouseover listener, but that doesn't work.

Any help would be appreciated.

I basically want my onmouseover to only do the following:

function mouseOver(e) {
if ([e][0].row != null) {
chart.setSelection([e]);
}
}

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-visualization-api/-/KmMVPuiIvScJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.

Reply via email to