I try to create bar chart using google chart example
var data = new google.visualization.DataTable(); data.addColumn(\'string\', \'Topping\'); d
You can force the x-axis of a BarChart to always show a certain range by setting the hAxis.viewWindow.min and hAxis.viewWindow.max options:
hAxis.viewWindow.min
hAxis.viewWindow.max
hAxis: { viewWindow: { min: 0, max: 100 }, ticks: [0, 25, 50, 75, 100] // display labels every 25 }