Monetary abbreviations in Statistic component

Hello! It would be handy to abbreviate monetary values in components such as Statistics.

5,000,000 as 5m or 5MM depending on your preference.
500,000 as 500k.

Not high priority but I would have used it today.

Andrew

Hi there,

Thanks for reaching out to us!

I've placed a feature request for this. Thanks for your assistance!

In the meantime, would utilizing the Javascript Intl.NumberFormat compact function work here? For example:
ā€‹

const abbreviated = Intl.NumberFormat('en-US', {

notation: "compact",

maximumFractionDigits: 1

}).format(statistic1.value);



ā€‹