首页 前端知识 echarts tooltip提示框加单位

echarts tooltip提示框加单位

2024-02-06 15:02:00 前端知识 前端哥 348 209 我要收藏

效果:

 

1.比较简单的方法

series: [
        {
          name: "重大风险",
          type: "bar",
          data: data2,
          color: ExtremeRiskColor,
          tooltip: {
                    valueFormatter: function (value) {
                        return value + ' 个';
                    }
                },
        },
        {
          name: "较大风险",
          type: "bar",
          data: data3,
          color:LargerRiskColor,
          tooltip: {
                    valueFormatter: function (value) {
                        return value + ' 个';
                    }
                },
        },
        {
          name: "一般风险",
          type: "bar",
          data: data4,
          color: GeneralRiskColor,
          tooltip: {
                    valueFormatter: function (value) {
                        return value + ' 个';
                    }
                },
        },
]

转载请注明出处或者链接地址:https://www.qianduange.cn//article/1468.html
标签
评论
发布的文章
大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!