Possible Duplicate:
Can someone help me create a simple vertical bar chart using google charts?
Im using new Google Chart Tools, and I want to create stacked bar chart format.
Possible Duplicate:
Can someone help me create a simple vertical bar chart using google charts?
Im using new Google Chart Tools, and I want to create stacked bar chart format.
The Google Developers site gives some details on the bar chart format: https://developers.google.com/chart/interactive/docs/gallery/barchart
To make a normal bar chart stacked, you need to user the
isStacked: true
option. You can copy and paste the following code into the Chart Tools playground to see a working example: http://code.google.com/apis/ajax/playground/?type=visualizationYou might also be interested in a Stacked Area Chart, depending on what data you are trying to display.
There is also a question which gives an example of a stacked bar chart using the Chart Tools Image API: Bar chart in Javascript: stacked bars + grouped bars
Note that the Image Charts portion of Google Chart Tools was officially deprecated on the 20th April, 2012. Image charts will still work for a while as per Google's deprecation policy, but I recommend you concentrate on the interactive HTML5+SVG implementation described above.