0

我需要用 2 个 yAxis 构建一个高图,一个在左侧(主要),一个在右侧(次要)。我无法完成这项工作。有什么想法我在这里做错或遗漏了吗?

这是jsfiddle:http: //jsfiddle.net/gsaray101/KX4AS/2/

我正在使用来自 highcharts 网站的示例:

yAxis: [{ // Primary yAxis
                labels: {
                    format: '{value}ms',
                    style: {
                        color: '#89A54E'
                    }
                },
                title: {
                    text: 'response time',
                    style: {
                        color: '#89A54E'
                    }
                }
            }, { // Secondary yAxis
                title: {
                    text: 'volume',
                    style: {
                        color: '#4572A7'
                    }
                },
                labels: {
                    format: '{value}',
                    style: {
                        color: '#4572A7'
                    }
                },
                opposite: true
            }],
4

1 回答 1

1

轴基于 0。所以你需要(http://jsfiddle.net/zEBSh/

var data = [{ "name": "1", "yAxis": 0, "data": [ [1374019440000, 25],

        [1374056640000, 43],
        [1374056880000, 49]
    ]
}, {
    "name": "2",
    "yAxis":1,
    "data": [
        [1374019440000, 33],
        [1374019740000, 42],
于 2013-07-18T17:02:42.573 回答