function drawCharts() { var query = new google.visualization.Query('https://docs.google.com/spreadsheet/ccc?key=0ArFGfpB6duBGdFBJNVI1c3liaXd0c3l3UVNFMmZoMEE&pli=1#gid=2'); query.setQuery('put your select statement here'); query.send(function (response) { var data = response.getDataTable(); var column = new google.visualization.ChartWrapper({ chartType: 'Column', dataTable: data, containerId: 'column_chart_div', options: { // chart options here }, view: { // define data view here, usually by setting the columns to use, ie: columns: [0, 1, 2] // use the first three columns } }); column.draw(); var pie = new google.visualization.ChartWrapper({ chartType: 'Pie', dataTable: data, containerId: 'pie_chart_div', options: { // chart options here }, view: { // define data view here, usually by setting the columns to use, ie: columns: [0, 3] // use the first and fourth columns } }); pie.draw(); });
sk
unread,
May 24, 2012, 3:53:47 AM5/24/12
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
thanku soo much
asgallant
unread,
May 24, 2012, 9:11:05 AM5/24/12
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