👋Hello can i get some help on this library ngx-charts i need to hide the percentage
HTML:
<ngx-charts-advanced-pie-chart [scheme]="colorScheme" [percentageFormatting]="hidePercentageFn" [results]="gaugeChart" [valueFormatting]="valueFormattingFn" [legend]="true" [label]="Label" > </ngx-charts-advanced-pie-chart>
TS:
hidePercentageFn(_value: number): string {
// I wrote this function to hide the percentage value but it showing Nan%
return '-';
}