highcharts y轴值显示左侧

highcharts y axis value display left

我想更改图表y轴值的显示位置。 在示例图表中,y 轴值显示在整个图表的右侧。 但我想把它显示在左边而不是右边。 这种情况怎么办?

enter link description here

您需要使用 opposite 属性:

yAxis: {
  opposite: false
}

现场演示: https://jsfiddle.net/BlackLabel/wx0qdypt/

API参考:https://api.highcharts.com/highstock/yAxis.opposite