我有一个功能,可以向动态图表添加另一个轴和系列。它曾经在Highcharts 3中运行良好。然后我升级到Highcharts 4,但是它添加了轴但没有添加意甲。

    chart.addAxis({ // Secondary yAxis
        id: tempId,
        title: {
            text: tempName
        },
        lineWidth: 2,
        lineColor: serie.color,
        opposite: opposition
    });

    var lbl = getLabelStatus_<?=$id?>(id);

    chart.addSeries({
        name: tempName,
        type: serie.type,
        color: serie.color,
        yAxis: tempId,
        data: serie.data,
        dashStyle: serie.options.dashStyle,
        dataLabels: {
            enabled: lbl,
            rotation: serie.options.dataLabels.rotation
        }
    });


他们是否改变了v4中的轴?我怎么解决这个问题?

最佳答案

尝试;

data : serie.options.data,

关于javascript - 多轴在Highcharts 4上不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32327510/

10-11 05:40