As long as you can get the information you need to draw the chart from the 
element you mouseover, then this is fairly easy:

// element is the DOM element to attach the event handler to
element.onmouseover = function () {
    // fetch the information you need from the element, then call the draw 
function, passing any necessary parameters
}; 

If you're looking to use this on chart elements, though, it becomes much 
more difficult, as the Visualization API doesn't expose a 'mouseover' event 
for the charts or any methods to link a DOM element back to its origin in 
the DataTable.

On Thursday, May 31, 2012 6:24:25 AM UTC-4, sindhu wrote:
>
> i want to dispaly the pie and column chart in info window when mouse over
> any one please kindly me
>

-- 
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/-/r1_mPpRiSRoJ.
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