美文网首页
vue-echarts自动轮播(自定义tooltip)

vue-echarts自动轮播(自定义tooltip)

作者: M_细花儿 | 来源:发表于2021-06-30 22:23 被阅读0次

在做大屏项目中,经常会用到echarts。让tooltip在地图中按省份等轮播也是常见的需求。
1、在这次大屏项目实践中,运用到了这一点,因为好几个模块都使用到了这个功能,于是把他提出来作为了公用文件(tool.js)。

/**
 * echarts tooltip轮播
 * @param chart ECharts实例
 * @param chartOption echarts的配置信息
 * @param options object 选项
 * {
 *  interval    轮播时间间隔,单位毫秒,默认为3000
 *              true表示循环所有series的tooltip,false则显示指定seriesIndex的tooltip
 *  seriesIndex 默认为0,指定某个系列(option中的series索引)循环显示tooltip,
 *              当loopSeries为true时,从seriesIndex系列开始执行。
 * }
 * @returns {{clearLoop: clearLoop}|undefined}
 */

export function autoHover(myChart, option, num, time) {
  var defaultData = { // 设置默认值
    time: 3000,
    num: 14
  };
  if (!time) {
    time = defaultData.time;
  }
  if (!num) {
    num = defaultData.num;
  }

  var count = 0;
  var timeTicket = 0;


  // 清除定时器
  function clearLoop() {
    if (timeTicket) {
      clearInterval(timeTicket);
      timeTicket = 0;
    }

    myChart.off('mousemove', stopAutoShow);
    myChart.getZr().off('mousemove', zRenderMouseMove);
    // myChart.getZr().off('globalout', zRenderGlobalOut);
  }

  // 关闭轮播
  function stopAutoShow() {
    if (timeTicket) {
      clearInterval(timeTicket);
      timeTicket = 0;
    }
  }

  function zRenderMouseMove(param) {
    if (param.event) {
      // 阻止canvas上的鼠标移动事件冒泡
      // param.event.cancelBubble = true;
    }

    stopAutoShow();
  }


  timeTicket && clearInterval(timeTicket);
  timeTicket = setInterval(function() {
    myChart.dispatchAction({
      type: 'downplay',
      seriesIndex: 0 // serieIndex的索引值   可以触发多个
    });
    myChart.dispatchAction({
      type: 'highlight',
      seriesIndex: 0,
      dataIndex: count
    });
    myChart.dispatchAction({
      type: 'showTip',
      seriesIndex: 0,
      dataIndex: count
    });
    count++;
    if (count >= num) {
      count = 0;
    }
  }, time);
  myChart.on('mouseover', function(params) {
    clearInterval(timeTicket);
    myChart.dispatchAction({
      type: 'downplay',
      seriesIndex: 0
    });
    myChart.dispatchAction({
      type: 'highlight',
      seriesIndex: 0,
      dataIndex: params.dataIndex
    });
    myChart.dispatchAction({
      type: 'showTip',
      seriesIndex: 0,
      dataIndex: params.dataIndex
    });
  });

  myChart.on('mouseout', function() {
    timeTicket && clearInterval(timeTicket);
    timeTicket = setInterval(function() {
      myChart.dispatchAction({
        type: 'downplay',
        seriesIndex: 0 // serieIndex的索引值   可以触发多个
      });
      myChart.dispatchAction({
        type: 'highlight',
        seriesIndex: 0,
        dataIndex: count
      });
      myChart.dispatchAction({
        type: 'showTip',
        seriesIndex: 0,
        dataIndex: count
      });
      count++;
      if (count >= 14) {
        count = 0;
      }
    }, 3000);
  });
  return {
    clearLoop: clearLoop
  };
}

2、在vue中进行引用

import { autoHover } from '你存放的文件位置';
methods:{
   initMap(data) {
     myChart = echarts.init(document.getElementById('preChart'));
     let option ={
         //省略配置内容
}
      myChart.setOption(option, true);
      this.tootipTimer && this.tootipTimer.clearLoop(); // this.tootipTimer 在data里定义
      this.tootipTimer = 0;
      this.tootipTimer = autoHover(myChart, option, 14, 3000);
}
}

⚠️注意:在每次关闭页面时,记得销毁这个事件轮询,不然会导致内存溢出
有不明白的地方,可以私信滴滴😊

相关文章

网友评论

      本文标题:vue-echarts自动轮播(自定义tooltip)

      本文链接:https://www.haomeiwen.com/subject/leddultx.html