var myChart= echarts.init(document.getElementById(‘myChart‘));
myChart.on(‘click‘, function (param) {
alert(‘点击了我!‘);
});
Echart事件参数可以去config.js查找
Echart饼图、柱状图、折线图(pie、bar、line)添加点击事件
时间: 2024-11-05 13:40:47
var myChart= echarts.init(document.getElementById(‘myChart‘));
myChart.on(‘click‘, function (param) {
alert(‘点击了我!‘);
});
Echart事件参数可以去config.js查找
Echart饼图、柱状图、折线图(pie、bar、line)添加点击事件