echarts 柱状图 折线图 饼图 环形图 鼠标移入效果

2023-12-26 16:42:08

1.柱状图 折线图 鼠标移入效果

tooltip: {//柱状图 折线图 鼠标移入效果
    trigger: "axis",
    confine: true,
    borderColor: "rgba(65, 119, 254, 1)", //边框颜色
    alwaysShowContent: false,
    backgroundColor: "rgba(238, 241, 255, 1)", //背景颜色
    textStyle: {
        align: "left",
        fontSize: 14,
        color: "rgba(51, 71, 93, 1)",
    },
    axisPointer: {
        type: "shadow",
    },
},

?

2.饼图 环形图 鼠标移入效果?

tooltip: {//饼图 环形图 鼠标移入效果
    trigger: "item",
    confine: true,
    borderColor: "rgba(65, 119, 254, 1)", //边框颜色
    alwaysShowContent: false,
    backgroundColor: "rgba(238, 241, 255, 1)", //背景颜色
    textStyle: {
        align: "left",
        fontSize: 14,
        color: "rgba(51, 71, 93, 1)",
    },
    axisPointer: {
        type: "shadow",
    },
},

?

3.加单位加在series {} 里面

tooltip: {
    valueFormatter: function (value) {
        return value + " " + "家";
    },
},

文章来源:https://blog.csdn.net/m0_70265923/article/details/135222945
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。