Hi there,
I've got quite a difficult question. For my local club, I have got one 
table with data (statistics) which I want to show per row.
When clicking or hovering on each row, I would like a pie chart to show up 
next to it.
For example in the Examples 
<https://developers.google.com/chart/interactive/docs/examples#full_html_page_example>,
 
each row in the table is connected to the Google Map.
Assuming this is part of the data:
    var Data = new google.visualization.DataTable(); 
    Data.addColumn('string', 'Name');
    Data.addColumn('string', 'Won');
    Data.addColumn('string', 'Draw');
    Data.addColumn('string', 'Lost');
    Data.addRows([
['Jan Jansen', '48', '32' ,'25'],
['Kees de Vries', '49', '28' ,'23'],
['Sem Smit', '41', '31' ,'35']
    ]);
... I would like a pie chart (as in http://jsfiddle.net/qh5z4etw/) showing 
the percentages/number, when you hover/click over one of the rows in the 
table.
Is this even possible, or should the data be in another shape?
Thanks for any help in advance,
Bert

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/d/optout.

Reply via email to