Highchart滚动条和两个x轴

时间:2016-01-08 16:40:41

标签: javascript highcharts scrollbar

我在mychart中创建的meteogram有点问题。我有两个x轴(在我的图表的顶部和底部)。我启用了滚动条(我使用的是highstock),这个滚动条仅在我的底部轴上受到影响。当我移动我的滚动时,只有底部轴滚动。我也想移动我的顶轴。怎么做?没有'滚动'参考轴的选项,只有全局:

scrollbar: {
        enabled: true
    }

在这里你可以看到它的样子: enter image description here

当我们移动滚动时,顶级类别不会改变。只有底部正在发生变化。

以下是x轴创建的代码:

xAxis: [ {
        categories: prepareCategories(jsonData),
        min: 0,
        max: 25,
        tickInterval: 8,
        tickWidth: 2,
        plotLines: preparePlotLines(jsonData)
    }, {
        categories: prepareWindCategories(jsonData),
        min: 0,
        max: 25,
        tickInterval: 2,
        tickWidth: 2,
        opposite: true,
        labels: {
            useHTML: true,
            formatter: function() {
                return prepareWindLabel(this.value.wind, this.value.windDirection);
            }
        }
    } ],

0 个答案:

没有答案