I have created a graph with ngx-charts but I can’t do several things: I would like to put the total number in the center of the graph and change the libel of the total word. I would like for example 9 Legends. Then I would like to put my legends vertically and not horizontally. I would like to have: Legend: the number. I wouldn’t want to have a percentage
<ngx-charts-advanced-pie-chart
[view]="view"
[scheme]="colorScheme"
[results]="single"
>
</ngx-charts-advanced-pie-chart>
public single = [
{
"name": "Légend 1",
"value": 4
},
{
"name": "Légend 2",
"value": 3
},
{
"name": "Légend 3",
"value": 2
}
];
view: any[] = [700, 400];
colorScheme = {
domain: ['#edbb48', '#999999', '#f29011']
};
Currently it looks like this: https://swimlane.gitbook.io/ngx-charts/v/docs-test/examples/pie-charts/advanced-pie-chart