ngx-chart を使用して、thin のような円グラフを作成します。
テンプレート
<ngx-charts-pie-chart
[scheme]="colorScheme"
[labels]="true"
[legend]="false"
[labelFormatting]="setLabelFormatting"
[arcWidth]="0.16"
[doughnut]="true"
[results]="patients"
(select)="onSelect($event)">
</ngx-charts-pie-chart>
成分
このようなデータを含む配列を送信します
public patients: Array<any> = [
{
name: 'recorrente',
value : 67
}, {
name: 'novos',
value: 33
}
];
しかし、ラベルをパーソナライズするために html/css タグを含むデータを送信する必要があります。