我使用以下方法动态填充highcharts中的类别,但它不适用于我
',':2047
如果我从console.log复制/粘贴输出,它工作正常,有什么帮助吗?
下面是截图
此外,我需要系列动态,任何帮助将不胜感激。
答案 0 :(得分:2)
使用此
var cats =[]
$.each(weeklyIndicators, function(i, item) {
if (cats.indexOf(item.indicatorTimestamp) == -1){
cats.push(item.indicatorTimestamp);
}
});
直接在您的类别中使用 cats 数组
categories = cats //not in []