I am trying to generate two pie charts (side by side) from the
chartwrapper code. Using the Playground example could someone show me
how to do so?
http://code.google.com/apis/ajax/playground/#pie_chart
current:
function drawVisualization() {
// Create and populate the data table.
var data = google.visualization.arrayToDataTable([
['Task', 'Hours per Day'],
['Work', 11],
['Eat', 2],
['Commute', 2],
['Watch TV', 2],
['Sleep', 7]
]);
// Create and draw the visualization.
new
google.visualization.PieChart(document.getElementById('visualization')).
draw(data, {title:"So, how was your day?"});
}