欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 教育 > 锐评 > vue+echarts实现tooltip轮播

vue+echarts实现tooltip轮播

2024/11/30 9:39:29 来源:https://blog.csdn.net/weixin_42812634/article/details/139796278  浏览:    关键词:vue+echarts实现tooltip轮播

效果图如下:
在这里插入图片描述
实现步骤如下:

  1. 定义一个定时器
timer:null,
len: 0,
  1. 页面一加载就清空定时器,此操作是为了防止重复加载时会设置多个定时器
  2. 在setOption后设置定时器
this.myChart.clear()
this.myChart.setOption(option);
this.autoShowToolTips();
autoShowToolTips() {this.timer = setInterval(() => {// console.log("userData", this.len);if (this.len === this.xData.length) {this.len = 0;}this.myChart.dispatchAction({type: "showTip",seriesIndex: 0,dataIndex: this.len,});this.len++;}, 3000);},clearTimer() {clearInterval(this.timer);},
  1. 页面销毁时,清楚定时器
beforeUnmount() {clearInterval(this.timer);},

至此便完成了。
附:
this.myChart.dispatchAction还可以设置很多别的属性,例如:点此查看具体详情

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com