0
當我在while循環中調用series [0] .remove()時,光標的陰影永遠不會被清除。 代碼在區域堆疊點擊上調用。series.remove()on area-stacked chart
plotOptions: {
area: {
stacking: 'percent',
trackByArea: true,
events: {
click: function() {
var chart = $('#container').highcharts();
while(chart.series[0]) {
chart.series[0].remove();
}
}
}
}
}
的jsfiddle:http://jsfiddle.net/4sV5g/
如何避免任何想法?
順便說一句,如果您取消註釋chart.addSeries(),導航器分隔符關閉的第二個錯誤。 – doobdargent