点击事件
charts绑定点击事件后,调试时,发现这样一个现象:
1、第1次click,请求后台1次;
2、第2次click,请求后台2次;
3、第3次click,请求后台3次;
如此循环。。。。
this.myChart = echarts.init(document.getElementById('elementID'));
this.myChart.clear();
this.myChart.showLoading();
this.myChart.setOption(option);
this.myChart.hideLoading();
this.myChart.resize();
this.myChart.off('click');//先移除,再点击
this.myChart.on('click',function(params){
//操作
})