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 + " " + "家";
},
},