我想在 React 中自定义我的 Doughnut
图表的图例,我想在其中显示值和标签。我有这段代码,但我不知道如何显示它:
onst options = {
plugins: {
legend: {
display: false,
generateLegend: function(chart) {
return `${chart.data}`;
},
position: 'right',
},
title: {
display: true,
font: {
size: 20
},
text: 'Tickets',
}
}
}