Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
16
rated 0 times [  23] [ 7]  / answers: 1 / hits: 46376  / 8 Years ago, wed, february 24, 2016, 12:00:00

I need to show currency format like these, how can we show.



₹1
₹10
₹100
₹1,000
₹10,000
₹1,00,000
......

More From » angularjs

 Answers
36

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


[#63188] Monday, February 22, 2016, 8 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
malkajillc

Total Points: 652
Total Questions: 107
Total Answers: 98

Location: Finland
Member since Sat, Nov 6, 2021
3 Years ago
malkajillc questions
;