How to show only integers (no decimals) in chart API x/y-axis labels

前端 未结 11 1354
予麋鹿
予麋鹿 2021-02-03 23:10

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

11条回答
  •  情深已故
    2021-02-03 23:45

    use the option

    vAxis: {format: '0'}
    

    as in

    chart.draw(data, {
                       width: 800,
                       height: 480,
                       orientation: 'horizontal',
                       vAxis: {format: '0'}
                      }
               );
    

提交回复
热议问题