Inserting percentage charts.js doughnut

前端 未结 4 635
失恋的感觉
失恋的感觉 2021-02-06 08:39

i\'m, using charts.js librarie and would like to know how could I add some mark to the hole of a doughnut chart (sth like a percentage)-

4条回答
  •  情书的邮戳
    2021-02-06 09:05

    A pure css solution

    .overview-total {
      position: relative;
    
      .overview-num{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }
    }
    

    Html

    140

提交回复
热议问题