Highchart.js辅助轴未显示在另一侧

时间:2014-07-21 11:47:37

标签: javascript highcharts

这些是辅助轴的选项:

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

我预计它会显示在左边,买不到。如何在左侧显示? http://jsfiddle.net/5XQT9/1/

3 个答案:

答案 0 :(得分:3)

由于您使用stockChartopposite的选项是对面

http://api.highcharts.com/highstock#yAxis.opposite默认为truehttp://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)

根据Highcharts

  

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
}