这些是辅助轴的选项:
{
title: {
text: 'This should be on the other side'
},
opposite: true
}],
我预计它会显示在左边,买不到。如何在左侧显示? http://jsfiddle.net/5XQT9/1/
答案 0 :(得分:3)
由于您使用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
}
答案 1 :(得分:1)
opposite: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
}],
答案 2 :(得分:0)
我有同样的问题,当我改变属性的顺序,先设置"对面"然后按预期呈现所有其他人。
{
opposite: false,
title: {
text: 'This should be on the other side'
},
min: 0,
ceiling: 100
}