2012-11-18 68 views
0

我有這張圖。只顯示軸上的整數步驟

IMG

我只顯示什麼在y軸上整數的步驟。 因此,而不是[0, 0.5, 1, 1.5, 2, 2.5]我想要[0,1,2]

這可能嗎?我不知道在官方API中需要尋找什麼。

+0

那麼這是什麼圖? –

+0

@RenePot你是什麼意思? – Oleander

+0

@Rene:它是[tag:highcharts](儘管我不完全確定當你離開問題時標籤在那裏)。 [API鏈接](http://api.highcharts.com/highcharts)。 –

回答

2

你要找的答案是allowDecimals布爾:

yAxis: { 
    allowDecimals : false, 
    /* completely irrelevant stuff follows... */ 
    title: { 
     text: 'It\'s the y-axis' 
    }, 
    plotLines: [{ 
     value: 0, 
     width: 1, 
     color: '#808080' 
    }] 
}, 

隨着allowDecimals: false

yAxis: { 
    allowDecimals : true, // though it defaults to 'true' anyway... 
    /* other stuff... */ 
}, 

並且與allowDecimals: true相同的圖表。

參考文獻: