Highcharts 添加了一个不存在的系列

Highcharts add a serie that does not exist

这是我的例子:

http://jsfiddle.net/mvPFG/140/

而html系列的源代码是:

 series: [{name:'Test',data: (function() {var data = [];data.push([1455073200000,1]);return data;})()},{   

知道为什么我得到 "Series 2:0" 吗?

此致!

您正在获得第二个系列,因为您在选项中指定了第二个系列(因此,即使它是空的,是的 - 它确实存在):

series: [{
    name:'Test',
  data: (function() {
    var data = [];
    data.push([1455073200000,1]);
    return data;
   })()
},{            
        // <--- this is an empty series, and it is showing in your legend,
        // <--- and taking up space in your chart
}]

删除空系列会将其从您的图例和图表中删除: