我想知道如何在甜甜圈图的中心写一些信息。 这是我的代码:
ngOnInit(): void {
// pie chart:
this.PieChart = new Chart('pieChart', {
type: 'doughnut',
data: {
labels: ["Individuel 60%", "Collectif 40%"],
datasets: [{
label: '# of Votes',
data: [40, 60],
backgroundColor: [
'rgba(255, 159, 64, 0.2)',
'rgba(153, 102, 255, 0.2)'
],
borderColor: [
'rgba(255, 159, 64, 1)',
'rgba(153, 102, 255, 1)'
],
borderWidth: 1
}]
},
options: {
title:{
text:"",
display:true,
},
}
});
} 有人有主意吗?