You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Visualization API
hello
how can I obtain row number I have selected in datatable ?
regards
asgallant
unread,
Oct 7, 2011, 9:41:33 AM10/7/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-visua...@googlegroups.com
You need to set up an event listener to hook the 'select' event and use the chart's getSelection() method to pull the row number:
google.events.addListener(chart, 'select', function () { var selection = chart.getSelection(); alert ('The selected row number is: ' + selection.row); });