Google Charts vertical axis in whole numbers

Simple answer: yes, but it’s complicated. If you just want numbers to display as whole numbers, then it’s easy: function drawVisualization() { // Create and populate the data table. var data = google.visualization.arrayToDataTable([ [‘x’, ‘Cats’, ‘Blanket 1’, ‘Blanket 2’], [‘A’, 1, 1, 0.5], [‘B’, 2, 0.5, 1], [‘C’, 4, 1, 0.5], [‘D’, 8, 0.5, 1], … Read more