如何写入甜甜圈图中心的空白区域

时间:2019-04-01 15:14:16

标签: angular chart.js

我想知道如何在甜甜圈图的中心写一些信息。 这是我的代码:

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,

    },

  }
});

} 有人有主意吗?

0 个答案:

没有答案