How do I put variables instead of (v:20, f:'$20M") etc???????
from ['January',v:20, f:'$20M'] to ['January',variable1, variable2],
function drawVisualization(idTarget) {
// Create and populate the data table.
var data = new google.visualization.DataTable();
data.addColumn('string', 'Month');
data.addColumn('number', 'Sales');
data.addRows([
['January',{v:20, f:'$20M'}],
['February',{v:31, f:'$31M'}],
['March',{v:61, f:'$61M'}],
['April',{v:26, f:'$26M'}],
['May',{v:10, f:'$10M'}]
]);
// Create and draw the visualization.
new google.visualization.PieChart(
document.getElementById(idTarget)).
draw(data, {is3D:true});
}
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
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.