I am trying to format the value with percent pipe in html(Angular2) and i need the percentage value without % sign
Is there any way to use Angular percent pipe without sign?
3.8k views Asked by Joseph Bineesh At
1
I am trying to format the value with percent pipe in html(Angular2) and i need the percentage value without % sign
As @Amadan commented in your question, you can use
numberpipe instead ofpercentpipe and multiply your value by 100. Like this:See this DEMO sample