在这里,我已经使用chart.js和chart.piecelabel.js在饼图中添加了一个细分...但是未添加箭头。
options: {
pieceLabel: {
render: function (args) {
const label = args.label,
value = args.value;
return label + '\n' + value;
}
}
答案 0 :(得分:0)
似乎chart.piecelabel.js
已更新其语法。他们的最新版本不再使用pieceLabel
,而是使用plugin: labels:
节。
options: {
plugins: {
labels: {
render: function (args) {
const label = args.label,
value = args.value;
return label + '\n' + value;
}
}
}
}