2013-07-09 142 views
2

我正在使用股票圖表的highstock圖表。在我的圖表中,我有一個按鈕,如1D,5D,6M,3YR,10YR和YTD。 當我調整圖表(ipad肖像模式)時,3yr,10yr和YTD按鈕出現在圖表中。 圖表中沒有足夠的按鈕空間。因此,我需要禁用幾個按鈕,並在圖表中只顯示1D,5D和YTD按鈕。如何禁用範圍選擇按鈕?

在桌面模式: enter image description here

iPad上的人像模式:

enter image description here

你建議我如何做到這一點?

在此先感謝。

回答

5

要禁用範圍選擇,您可以使用此代碼:

rangeSelector: { 
    enabled: false 
} 

,並修改它的按鈕,你可以使用這段代碼;

rangeSelector: { 
    buttons: [{ 
     type: 'day', 
     count: 3, 
     text: '3d' 
    }, { 
     type: 'week', 
     count: 1, 
     text: '1w' 
    }, { 
     type: 'month', 
     count: 1, 
     text: '1m' 
    }, { 
     type: 'year', 
     count: 1, 
     text: '1y' 
    }, { 
     type: 'all', 
     text: 'All' 
    }], 
    selected: 3 
} 

也許更少的按鈕數量可以解決您的問題。