在为图形的初始渲染构建系列时,有没有办法将系列对象实例化为具体对象:
前任:
var graphSeries = {}; //Is there a way to construct a real series object
graphSeries.name = country.name;
graphSeries.color = country.color;
graphSeries.data = [];
graphSeries.data.push(country.year2010);
graphData.series.push(graphSeries);
chart = new Highcharts.Chart(graphData);
这是用于图表的初始渲染。
我想避免构造graphSeries
为匿名对象,以便访问真实系列对象上的方法。是否有可用于创建对象的辅助方法?
就像是:
var graphSeries = HichChartObject.CreateSeries();
我知道有一种方法可以在图表呈现如下后引用系列对象:
chart.series[index].remove();
但我想保留对添加的系列的引用,而不是
graphSeries.remove();