highcharts动态类别不起作用

时间:2016-02-05 16:51:32

标签: javascript json highcharts

我使用以下方法动态填充highcharts中的类别,但它不适用于我

',':2047

如果我从console.log复制/粘贴输出,它工作正常,有什么帮助吗?

下面是截图

enter image description here

此外,我需要系列动态,任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

使用此

var cats =[]
 $.each(weeklyIndicators, function(i, item) {
    if (cats.indexOf(item.indicatorTimestamp) == -1){
        cats.push(item.indicatorTimestamp);
    }
});

直接在您的类别中使用 cats 数组

categories = cats //not in []