Hi!

I am drawing a scatter plot and I would like to treat the onmouseover
event. In the API reference it says that the event passes back the row
and column indices of the corresponding data table element.

So, to handle the onmouseover event I create a handler function and
add a listener:

function handler (){

                        alert ("in the handler");

                }

google.visualization.events.addListener(chart, 'onmouseover',
handler);

But how do I seize the returned values, i.g. the coordinates of the
point where the mouse have passed?

Dmitry

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
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