I\'m using a column chart with the Google Chart JS Api. I\'m displaying some values (total orders by day) that can only be represented as integers.
Everything is work
use the option
vAxis: {format: '0'}
as in
chart.draw(data, { width: 800, height: 480, orientation: 'horizontal', vAxis: {format: '0'} } );