如图所示:
需要给每个散点一个文本内容,使用formatter自定义内容
在series里的label配置项,配置文本提示
series:[
label: {
show: true,
formatter: function (value,) {
return '排名前' + value.value + '%'
},
position: "top", // 展示在柱子的上方
color: "#000",
fontSize: 18
},
]