这些是辅助轴的选项:

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


我希望它能显示在左侧,而购买则不会。如何在左侧显示?
http://jsfiddle.net/5XQT9/1/

最佳答案

由于您使用的是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
    }

10-06 03:52