Highcharts不显示具有多个Y轴的图形的系列数据

时间:2013-05-17 13:53:48

标签: javascript highcharts

我正在尝试显示包含2个数据系列的图表。系列1是折线图,系列2是柱状图。 2个Y轴,每个轴具有不同的比例。通过查看HighCharts网站上的示例,这应该非常简单,他们拥有的示例正是我正在寻找的。但是当我去编码时,第二个系列的系列数据没有显示在图表上。

看看这里:http://jsfiddle.net/QgHHZ/2/

$(function () {

    var Data = [{
        "name": "Series1",
        "type": "line",
        "data": [40000, 60000, 54000, 58000, 66000]
    }, {
        "name": "Series2",
        "type": "column",
        "yaxis": "1",
        "data": [22300, 44, 22, 12456, 888]
    }]

    var Options = {
        chart: {
            renderTo: "container",
            zoomType: "x"
        },
        plotOptions: {
            line: {
                marker: {
                    enabled: false
                },
                animation: true
            },
            column: {
                animation: false
            }
        },
        title: {
            text: "Test"
        },
        legend: {
            enabled: true,
            layout: "vertical",
            align: 'right',
            verticalAlign: 'middle'
        },
        tooltip: {
            enabled: true,
        },
        yAxis: [{
            title: {
                text: 'Series 1'
            },
            min: 35000,
            max: 80000
        }, {
            title: {
                text: 'Series 2'
            },
            min: 0,
            max: 30000,
            opposite: true
        }],
        series: Data
    };


    myChart = new Highcharts.Chart(Options);
});

如果取出每个Y轴的最小值和最大值,则会显示两个系列数据,但右侧的轴标签会消失,就像第二个系列刚刚显示在y轴上一样在左边。

我不知道我做错了什么或是一个错误。

有什么想法吗?

1 个答案:

答案 0 :(得分:4)

将y轴更改为y轴,该值必须是不是字符串的数字。

你有这个:

{
     "name": "Series2",
     "type": "column",
     "yaxis": "1",
     "data": [22300, 44, 22, 12456, 888]
 }

必须是这个:

{
    "name": "Series2",
    "type": "column",
    "yAxis": 1,
    "data": [22300, 44, 22, 12456, 888]
}]

jsFiddle:http://jsfiddle.net/QgHHZ/5/