Visualization: Column Chart A vertical bar chart that is rendered within the browser using SVG or VML . Displays tips when hovering over bars. For a horizontal version of this chart, see the Bar Chart . By: Google This is the new version of the column chart. For tips on how to migrate to the new charts, please see the release notes page. If you need to access the older version, you can find the documentation here . Example Code it yourself on the Visualization Playground <html> <head> <script type = "text/javascript" src = "https://www.google.com/jsapi" ></script> <script type = "text/javascript" > google . load ( "visualization" , "1" , { packages :[ "corechart" ]}); google . setOnLoadCallback ( drawChart ); function drawChart () { var data = google . visualization . arrayToDataTable ([ [ 'Year'
From the Developers....to the Developers