Bars are (unfortunately) colored by series only, so you have to make one 
column per bar.  You can turn off the axes by setting the 'textPosition' 
parameter of the 'hAxis' and 'vAxis' options to 'none'

For example:

function drawChart() {
     var data = new google.visualization.DataTable();
     data.addColumn('string', '');
     data.addColumn('number', 'Numbers');
     data.addColumn('number', 'Numbers');
     data.addColumn('number', 'Numbers');
     data.addColumn('number', 'Numbers');
     data.addColumn('number', 'Numbers');
     data.addRows([
          ["", 1000, 1170, 660, 1030, 1030]
     ]);

     var chart = new google.visualization.ColumnChart(document.
getElementById('visualization'));
     chart.draw(data, {
          width: 400,
          height: 240,
          legend: 'none',
          gridlineColor: '#fff',
          hAxis: {
               textPosition: 'none'
          },
          vAxis: {
               textPosition: 'none',
               baselineColor: '#ccc'
          }
     });
} 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-visualization-api/-/8TbXh_V54lYJ.
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.

Reply via email to