Hi,
Thank you for contacting Syncfusion support.
Based on the provided information, if you need to edit the numeric column with the integer value, you can use the column’s NumericFormtInfo property and set NumberDecimalDigits as 0. Kindly refer the following code example for the same,
//Set the NumberFormatInfo for the numeric column.
sfDataGrid.Columns.Add(new GridNumericColumn() { MappingName ="ColumnName", NumberFormatInfo = newSystem.Globalization.NumberFormatInfo() { NumberDecimalDigits = 0 }}); |
You can refer our User Guide documentation regarding the same,
Regards,
Subburaj Pandian V