Show decimal value without currency symbol

Hello,

I have a grid with numeric values formatted with currency format ('C2') and I want to show the formatted values without a currency symbol, only the decimal value. I tried to apply some format options for the column, which looks like this:



If I don't set the currency code as 'EUR' or anything else, the default symbol shown is 'USD'. There are any options or any format to show the values as currency but without any symbol? The culture for the grid is set to Italian (it).

eg: 1234,56 not 1234,56 $ or 1234,56 €.


1 Reply

RS Rajapandiyan Settu Syncfusion Team March 23, 2022 08:21 AM UTC

Hi Ciprian, 

Thanks for contacting Syncfusion support. 

Query: I want to show the formatted values without a currency symbol, only the decimal value. 

You can achieve your requirement by using numeric type (N) formatting instead of currency type (C) formatting. Find the below documentation for more information. 



      <e-column 
        field="Freight" 
        headerText="Freight" 
        type="number" 
        width="120" 
        format="N2" 
      ></e-column> 



Please get back to us if you need further assistance with this. 

Regards, 
Rajapandiyan S 


Loader.
Up arrow icon