2014-07-21 45 views

回答

1

作爲每Highcharts

相反:Boolean是否對 正常的相反側顯示軸。法線在垂直軸的左側,水平的底部爲 ,所以相反的兩側分別是右側和頂部 。在Highstock 1.x中,Y軸默認放置在左側 。默認爲true。

這意味着正確的是

所以,如果你想Y軸是左然後標記opposite false看到this fiddle

yAxis: [ 
       { 
       title: { 
        text: 'Temperature (°C)' 

       }, 
         opposite: false}, 
        { 
         title: { 
          text: 'This should be on the other side' 
         }, 
         opposite: false 
        }], 
0

我有同樣的問題,當我改變了屬性的順序,首先設定「相反」,然後按預期設定所有其他設定。

{ 
    opposite: false, 
    title: { 
      text: 'This should be on the other side' 
      }, 
    min: 0, 
    ceiling: 100 
}