Hello @Vaishali,
This is because in v31, the grid started inferring data types. This one is inferring that your column is numbers, which looks to be accurate.
To override, you can put cellDataType: “text”
in the column definition. Or turn off inferred data types on the whole grid.
You might also be able to use a valueFormatter instead of having your df give -.
valueFormatter: {“function”: “params.value ? params.value : ‘-‘“}