我在网站上有一个渲染的Highcharts图表,我需要在一段时间后清空它。现在我用这样的代码尝试过,但图表不会自己清空/没有任何变化......
var chart = new Highcharts.Chart({
// Chart settings
});
// Some other JS
function emptyChart(chart) {
chart.series = [];
chart.redraw();
}
// Some code and a function executes this function after some time
emptyChart(chart);
我在 Firebug 控制台或其他地方也没有收到任何错误,只是没有任何反应......