当前位置:   article > 正文

echarts柱状图柱子之外的点击事件_mychart.getzr()

mychart.getzr()
			myChart.getZr().on('click', function (params) {
                let pointInPixel = [params.offsetX, params.offsetY]
                // console.log(myChart.containPixel('grid', pointInPixel))
                let pointInGrid = myChart.convertFromPixel({ seriesIndex: 0 }, pointInPixel)
                // console.log(pointInGrid)
                // 也可以通过params.offsetY 来判断鼠标点击的位置是否是图表展示区里面的位置
                // 也可以通过name[xIndex] != undefined,name是x轴的坐标名称来判断是否还是点击的图表里面的内容
                // x轴数据的索引
                let xIndex = pointInGrid[0]
                // y轴数据的索引
                let yIndex = pointInGrid[1]
                // 拿到x轴和y轴的下标之后可以通过下标拿到坐标的字段名或者字段值
            })
            myChart.getZr().on('mousemove', params => {
                var pointInPixel = [params.offsetX, params.offsetY];
                if (myChart.containPixel('grid', pointInPixel)) {//若鼠标滑过区域位置在当前图表范围内 鼠标设置为小手
                    myChart.getZr().setCursorStyle('pointer')
                } else {
                    myChart.getZr().setCursorStyle('default')
                }
            })
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

项目中遇到一个需求,echarts横向柱状图设置点击事件进行操作,使用常用的myChart.on(“click”)的话,只有柱状图有值的时候才有点击事件,当柱状图的数据为0时,无法进行点击。后来用getZr()方法可以点击柱子之外的地方进行点击操作。
使用上面的代码已解决项目中的需求!问题虽小,以此记录,希望可以帮助到有需要的人!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/549751
推荐阅读
相关标签
  

闽ICP备14008679号