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

echats点击旋转并切换高亮效果

时间:2020-01-03 19:22:58      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:data   param   chart   his   more   旋转   isp   颜色   highlight   

echats点击旋转并切换高亮效果

  • 本方法前面是点击旋转,原理是每次点击是重新渲染图表,计算图标旋转角度,达到切换旋转效果,
  • 本方法后面是点击切换图标时该扇形显示高亮效果
onChartClick(param) {
      //切换图标时计算角度
      let dataIndex = param.dataIndex;
      let angle = 0;
      //计算起始扇形角度
      if (dataIndex == 0) {
        this.radarOptionConfig.series[0].startAngle = this.percentArrary[0] / 2;
        // this.onChartDispatch = { type: "downplay" };
      } else {
        for (let i = 0; i <= dataIndex; i++) {
          angle += this.percentArrary[i];
        }
        let moreAngle = angle - this.percentArrary[dataIndex] / 2;
        this.radarOptionConfig.series[0].startAngle = moreAngle;
        // console.log(dataIndex);
      }
      //点击切换表格数据
      this.tableData = this.newVIPdataArr[dataIndex];
      this.navTitle = this.tableData.name;//图标对应数据显示在表格中
      this.triangle = "triangle" + (dataIndex % 5); //图标上三角形指示器切换颜色

      //点击控制高亮
      let obj =
        (this.radarOptionConfig &&
          this.radarOptionConfig.series &&
          this.radarOptionConfig.series[0] &&
          this.radarOptionConfig.series[0].data) ||
        [];

      const chart = this.$refs["chartContainer"].chart;

      obj.forEach((_, i) => {
        console.log(i, dataIndex);

        if (i === dataIndex) {
          chart.dispatchAction({
            type: "highlight",
            seriesIndex: 0,
            dataIndex
          });
          this.clickdataindex = i;
        } else {
          chart.dispatchAction({
            type: "downplay",
            seriesIndex: 0,
            dataIndex: i
          });
        }
      });
    },

echats点击旋转并切换高亮效果

标签:data   param   chart   his   more   旋转   isp   颜色   highlight   

原文地址:https://www.cnblogs.com/sinceForever/p/12146260.html

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