Ovilia commented on issue #10619: 无法给折线图hover上去后面的阴影添加点击事件 URL: https://github.com/apache/incubator-echarts/issues/10619#issuecomment-499351245 测试例子(目前还没有实现该效果): ```js option = { title: { text: 'Awesome Chart' }, xAxis: { data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'] }, yAxis: {}, series: [{ type: 'line', data:[220, 182, 191, 234, 290, 330, 310] }], tooltip: { show: true, trigger: 'axis', axisPointer: { type: 'shadow' } } }; myChart.on('click', function () { console.log('click'); }) ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
