Issue
I need to show currency format like these, how can we show.
₹1
₹10
₹100
₹1,000
₹10,000
₹1,00,000
......
Solution
AngularJS
In HTML
{{ currency_expression | currency : symbol : fractionSize}}
for example
{{amount | currency:"₹":0}}
AngularJS docs Currency Pipe
Angular 2+
{{amount | currency:'INR':'symbol-narrow':'4.2-2'}}
you can also refer Currency Pipe
Answered By - Sanjay Nishad
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.