Echarts事件

Echart饼图、柱状图、折线图(pie、bar、line)添加点击事件
发布日期:2014年08月10日   来源:PHP1.CN     点击:250638
摘要:var myChart= echarts.init(document.getElementById('myChart'));            myChart.on('click', function (...
转载请注明来源:Echart饼图、柱状图、折线图(pie、bar、line)添加点击事件

var myChart= echarts.init(document.getElementById('myChart'));         

  myChart.on('click', function (param) {
                       alert('点击了我!');

            });

Echart事件参数可以去config.js查找
转载请注明来源:Echart饼图、柱状图、折线图(pie、bar、line)添加点击事件
http://www.php1.cn/Content/Echart_BingTuZhuZhuangTuZheXianTu_-pie__bar__line-_TianJiaDianJiShiJian.html

原文地址:https://www.cnblogs.com/Rozdy/p/5276071.html