myChart.getZr().on('click',function({offsetX,offsetY}){
// 使用getzr()为整个图表添加点击事件 回调函数为 横坐标,纵坐标
const pointInPixel = [offsetX, offsetY];
// 用于判断是否在某一个坐标上 使用containPixel 方法支持的类型有 grid, polar, geo, series-map, series-graph, series-pie。
// 详情请参考: https://echarts.apache.org/zh/api.html#echartsInstance.containPixel
if (myChart.containPixel('grid', pointInPixel)) {
const [,yIndex] = myChart.convertFromPixel({ seriesIndex: 0 }, pointInPixel);
//坐标转换,结构出 点击阴影index
}
如何给echats 图表阴影部分加点击事件
最新推荐文章于 2024-08-13 16:13:49 发布