在彼此下方水平显示 Highchart 系列

Show Highchart series horizontally below each other

我创建了一个像这样的多轴 Highchart link:http://www.highcharts.com/demo/combo-multi-axes

如何水平显示系列在彼此下方?

您需要定义 yAxis 顺序以使这些系列水平排列在彼此下方。

定义 yAxis:0 ,1,2 并将系列按与 yAxis 相同的顺序排列。

yAxis: [ 
        { 
        opposite : false,
        min: 0,
        top: 0,
        height: '31%',
        offset: 0   
       } //and so on 
       ]

See a working example here