我想像this一样动态添加图表Axis和图表系列。
$.each(seriesOptions, function(){
chart.addAxis({
id: this.name,
title: {
text: this.name
},
lineWidth: 2,
opposite: true
});
chart.addSeries({
name: this.name,
data: this.data,
yAxis: this.name
});
});
我的解决方案效果很好:jsFiddle
但加载图表后,我只能看到yAxis,但没有系列。如果我点击特定范围(rangeSelector) - 系列变得可见
我认为rangeSelector和yAxis存在问题?因为当我删除rangeSelector时,我将收到“NodeNotFound”错误。
有什么建议吗? 干杯