2

有没有办法在 Highstock 上制作一个像 Highcharts 上的双轴?

http://www.highcharts.com/demo/combo-dual-axes

4

1 回答 1

4

看起来你可以像在 highcharts 中那样做。每个系列都指定 yAxis:n 其中 n 是您要绘制它的轴,您需要定义 n 个 yAxis 条目。我修改了一个示例 highstock 演示:http: //jsfiddle.net/ykfmG/

$.getJSON('http://www.highcharts.com/samples/data/jsonp.php?filename='+ name.toLowerCase() +'-c.json&callback=?',   function(data) {

        seriesOptions[i] = {
            name: name,
            data: data,
            yAxis:i
        };
}



        yAxis: [{
            labels: {
                formatter: function() {
                    return (this.value > 0 ? '+' : '') + this.value + '%';
                }
            },
            plotLines: [{
                value: 0,
                width: 2,
                color: 'silver'
            }]
        },{opposite:true},{opposite:true},{opposite:true}],
于 2013-03-26T18:18:41.860 回答