回到首页
个人中心
反馈问题
注册登录
下载APP
代码
提交代码
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width,initial-scale=1.0" /> <title>Echarts Example</title> </head> <body> <div id="main" style="width: 600px;height: 400px"></div> <script src="//cdn.bootcss.com/echarts/4.5.0/echarts.common.js"></script> <script type="text/javascript"> const myChart = echarts.init(document.getElementById('main')); const option = { xAxis: { type: 'category', data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] }, yAxis: { type: 'value', min: 800 }, series: [ { data: [820, 932, 901, 934, 1290, 1330, 1320], type: 'bar' }, { data: [920, 1032, 1001, 1034, 1390, 1430, 1420], type: 'line' }, ], }; myChart.setOption(option); // 在所有 series 上都触发 myChart.on('click', 'series', function (e) { console.log(`series listener: click invoke at ${e.componentType}.${e.componentSubType}`); }); // 只在 line 图表上触发 myChart.on('click', 'series.line', function (e) { console.log(`line listener: click invoke at ${e.componentType}.${e.componentSubType}`); }); </script> </body> </html>
运行结果