1

是否有可能在 highstock 图表中有 2 个 yAxis 从 highcharts 一个在左边,另一个在右边?

谢谢

4

1 回答 1

4

一个非常简单的例子:
首先,您必须创建新的 yAxis 并设置它的位置。

{
    title: {
        text: 'Other data panel'
    },
    top: 300,
    height: 100,
    offset: 0,
    lineWidth: 2,
    opposite: true
}

然后,当您创建您的系列时,您将放置在什么 yAxis 中。

{
    type: 'column',
    name: 'Other',
    data: otherData,
    yAxis: 2,
    dataGrouping: {
        units: groupingUnits
    }
}

你可以看到它在这里工作

于 2012-11-29T14:00:49.937 回答