首页 前端知识 echarts改柱状图的tooltip中圆圈为方块型(自定义柱状图提示框)

echarts改柱状图的tooltip中圆圈为方块型(自定义柱状图提示框)

2024-10-28 20:10:57 前端知识 前端哥 389 564 我要收藏

echarts改柱状图的tooltip中圆圈为方块型(自定义柱状图提示框)

效果图

在这里插入图片描述

代码

tooltip: {
            trigger: 'axis',
            // backgroundColor: 'gray',
            axisPointer: { // 坐标轴指示器,坐标轴触发有效,
              type: 'shadow', // 默认为line,line直线,cross十字准星,shadow阴影
              crossStyle: {
                color: '#fff'
              }
            },
            // 自定义提示框内容
            formatter: (data) => {
              console.log('parma', data)
              let str = '<div style="color:#0C1B52;font-size: 15px;font-weight: bold;margin-bottom: 5px;">' + data[0].axisValue + '</br></div>'
              data.reverse().forEach(item => {
                str = str + '<div style="font-size: 12px;padding: 4px 0">' + '<div style="display:inline-block;margin-right:4px;width:10px;height:10px;background-color:' + item.color + ';"></div>' + item.seriesName + ' : ' + item.data + '</br></div>'
              })
              return str
            },
            textStyle: {
              fontSize: 14
            }
          },
转载请注明出处或者链接地址:https://www.qianduange.cn//article/19371.html
标签
评论
发布的文章
大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!