這些是次級軸的選項:Highchart.js次級軸沒有顯示在相對側
{
title: {
text: 'This should be on the other side'
},
opposite: true
}],
我預期它顯示在左邊,買它沒有。我如何在左側顯示它? http://jsfiddle.net/5XQT9/1/
這些是次級軸的選項:Highchart.js次級軸沒有顯示在相對側
{
title: {
text: 'This should be on the other side'
},
opposite: true
}],
我預期它顯示在左邊,買它沒有。我如何在左側顯示它? http://jsfiddle.net/5XQT9/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
}],
由於您使用的是stockChart
爲opposite
的選項是相反!
http://api.highcharts.com/highstock#yAxis.opposite默認爲true
同時http://api.highcharts.com/highcharts#xAxis.opposite默認爲false
因此將其更改爲false
,下面將工作:http://jsfiddle.net/robschmuecker/5XQT9/4/
{
title: {
text: 'This should be on the other side'
},
opposite: false
}
我有同樣的問題,當我改變了屬性的順序,首先設定「相反」,然後按預期設定所有其他設定。
{
opposite: false,
title: {
text: 'This should be on the other side'
},
min: 0,
ceiling: 100
}