例如:把之前的柱状图数据改成百分比:
鼠标移上去的文字配置
在option内 series同级添加配置:
tooltip: { //提示配置项 trigger: "axis", axisPointer: { type: "shadow", }, formatter:"{b} : {c}%" },
其中formatter:代表
柱状图上文字配置:
var seriesLabel = { normal: { show: true, color: "#0FEBFF", // textBorderColor: ‘#333‘, // textBorderWidth: 2 position: "right", fontSize: "16px", formatter: "{c}%", }, }; series:[{ label: seriesLabel, }]
效果: