当前位置:   article > 正文

echart点击事件_mychart.getzr().on

mychart.getzr().on
myChart.getZr().on('mouseover', params => {
  let pointInPixel = [params.offsetX, params.offsetY]
  if (myChart.containPixel('grid', pointInPixel)) {
    //点击第几个柱子
    let pointInGrid = myChart.convertFromPixel({ seriesIndex: 0 }, pointInPixel)
    // 也可以通过params.offsetY 来判断鼠标点击的位置是否是图表展示区里面的位置
    // 也可以通过name[xIndex] != undefined,name是x轴的坐标名称来判断是否还是点击的图表里面的内容
    // x轴数据的索引
    let xIndex = pointInGrid[0]
    let xstr = this.allDataMsg[xIndex];
    //console.log(xstr);//然后弹框回显数据,并可以更新备注信息
  }
})
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/549773
推荐阅读
  

闽ICP备14008679号