当前位置:   article > 正文

echarts中的提示框组件tooltip自定义背景图像_echarts自定义tooltip带图形

echarts自定义tooltip带图形
一. 代码环境

“echarts”: “^5.4.0”,
“vue”: “^3.2.37”,

二. 实现目标

原始效果如下图:
在这里插入图片描述
想要的效果,如下图:自定义的背景图片

在这里插入图片描述

三. 实现代码

步骤一: 给tooltip加一个类名,如下面的className: ‘custom-tooltip-box’,清除他的padding,border等。

步骤二:通过formatter属性,处理需要展示的数据,并且放到子标签里面,给子标签定义类名。

<script setup>
const options = {
  tooltip: {
    // 提示框组件
    trigger: 'axis', // 坐标轴触发,应用于柱状图、折线图
    triggerOn: 'mousemove', // 鼠标移动时触发
    axisPointer: {
      type: 'none',
    },
    className: 'custom-tooltip-box',
    formatter: function (params, elOne, elTwo) {
      console.log(params)
      console.log(elOne)
      console.log(elTwo)
      // 循环处理数据,展示数据
      var htmlText = `<div class='custom-tooltip-style'>显示内容待处理</div>`
      return htmlText
    },
  },
}
</script>

<style scoped lang="scss">
// 给父盒子清除默认已有样式
:deep(.custom-tooltip-box) {
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  // 给子盒子自定义样式
  .custom-tooltip-style {
    width: 92px;
    height: 171px;
    background-image: url('@/assets/images/echarts/tooltip-bgc.png');
    background-size: cover;
    color: #fff;
  }
}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38

定义类名后,得到的效果如下图:

在这里插入图片描述
总结:

其实就是通过给标签加类名,然后通过CSS来加上我们想要的背景图片,以及处理需要展示的数据样式,这些统一写在style标签里面,比直接配置在tooltip对象里面方便多了。

如果只是想加背景图,并不想改显示数据样式,那么就去掉formatter配置,直接在tooltip的类名里面通过CSS加背景图片。

(完)

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

闽ICP备14008679号