码迷,mamicode.com
首页 > 其他好文 > 详细

angular11给Echarts添加点击事件,无脑抄代码的时候到了~~ 超好用

时间:2021-06-04 19:05:50      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:图表   top   str   https   ams   直通车   lse   ice   cti   

关于引入Echarts的方法在此

直通车在此

接下来就是添加点击事件,获取X轴的数据


<div echarts #charts [options]="chartOption" class="charts"></div>

import { NgxEchartsService } from ‘ngx-echarts‘;
  @ViewChild(‘charts‘, { static: false }) charts: ElementRef;
constructor(
    private es: NgxEchartsService
  ) { }

this.es.getInstanceByDom(this.charts.nativeElement).setOption(this.chartOption)
 let myChart = this.es.getInstanceByDom(this.charts.nativeElement)
      myChart.getZr().on(‘click‘, function (params) {
        var pointInPixel = [params.offsetX, params.offsetY];
        if (myChart.containPixel(‘grid‘, pointInPixel)) {
          /*此处添加具体执行代码*/
          var pointInGrid = myChart.convertFromPixel({ seriesIndex: 0 }, pointInPixel);
          //X轴序号
          var xIndex = pointInGrid[0];
          //获取当前图表的option
          var op = myChart.getOption();
          //获得图表中我们想要的数据---懒得写循环了,复制了一下,下面就不简写了,默认说我们的折现有三条吧
          var xValue = op.xAxis[0].data[xIndex];
          var value = op.series[0].data[xIndex];
          var name = op.series[0].name;
          var value1 = op.series[1].data[xIndex];
          var name1 = op.series[1].name;
          var value2 = op.series[2].data[xIndex];
          var name2 = op.series[2].name;
          console.log(op);
          console.log(‘xValue: ‘+xValue + ", series[0].name0: "+name +‘ , value: ‘+ value + "%");
          console.log(‘xValue: ‘+xValue + ", series[1].name0: "+name1 +‘ , value1: ‘+ value1 + "%");
          console.log(‘xValue: ‘+xValue + ", series[2].name0: "+name2 +‘ , value2: ‘+ value2 + "%");
        }
      });

angular11给Echarts添加点击事件,无脑抄代码的时候到了~~ 超好用

标签:图表   top   str   https   ams   直通车   lse   ice   cti   

原文地址:https://www.cnblogs.com/sugartang/p/14847529.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!