unable to round percent(%) from 25.46474676% to 25% i am unsing below format Please check
<text>{{Actual_Val / HighRangeLimit * 100 | percent }}%</text>
Thanks
unable to round percent(%) from 25.46474676% to 25% i am unsing below format Please check
<text>{{Actual_Val / HighRangeLimit * 100 | percent }}%</text>
Thanks
You could try to do the calculation inside of ngOnInit
and then just set value which you apply the Angular PercentPipe too.
<text>{{ value | percent }}%</text>
value;
ngOnInit() {
this.value = Actual_Val / HighRangeLimit * 100;
}
With the pip percent use : '1.0-0'
it will give you 25 instead of 25.46474676
<text>{{Actual_Val / HighRangeLimit * 100 | percent : '1.0-0' }}%</text>