Help with propiety Format in razdenNumeric field

Hi everybody.

I would like to format the number that user insert in numeric field. I´m using RadzenNumeric and Format propietie. I need to format number in thousands, millions, billions, etc...and also with three 0 in decimal part. I give an example:

10.000.000.000.000.000,001

I have seen in radzen components page, several examples, but I can´t find more information about the types to use in propietie Format to find the format that I need.
The format that it´s near that I need is this:

Format="c"

The format that it gives is this:
10.000.000.000.000,00 €

But it´s not necesary the €, and a zero is missing in the decimal part. ¿It´s possible to configure this format to my aim?

Thank a lot in advanced for the help.

Hi @Luar79,

RadzenNumeric uses the built-in .NET number formatting. You can check the related documentation:

1 Like

Hello,
From Standard numeric format strings - .NET | Microsoft Learn, u should use "C3" instead of "C"

1 Like

Ok thank you!

I have find the format that I need, in my case is N3.

Thank´s again!