I want to add pipeline to my ngx-chart xAxisLabel and yAxisLabel.
<ngx-charts-bar-vertical
[view]="view"
[scheme]="colorScheme"
[results]="single"
[gradient]="gradient"
[xAxis]="showXAxis"
[yAxis]="showYAxis"
[legend]="showLegend"
[showXAxisLabel]="showXAxisLabel"
[showYAxisLabel]="showYAxisLabel"
[xAxisLabel]="xAxisLabel"
[yAxisLabel]="yAxisLabel"
(select)="onSelect($event)">
</ngx-charts-bar-vertical>
The code I changed below caused an error.
[showXAxisLabel] = {{ 'xAxisLabel' | translate }}
Error:
Error in /turbo_modules/@angular/compiler@8.2.14/bundles/compiler.umd.js (2603:21)
How could I achieve ngx-translate pipe with ngx-charts?