答案 0 :(得分:1)
我会使用chartist-bar-labels它应该提供你想要的东西,用它你可以添加以下代码:
Chartist.plugins.ctBarLabels({
position: {
x: function (data) {
return data.x1 + 50
}
},
labelOffset: {
y: 7
},
labelInterpolationFnc: function (text) { //<--- this adds text to your bards
return text + '%'
}
})