How to apply display format to total

I have a column with custom cell type. I want to display total for that column in same format as of that column. Is there any way to do that.

Thanks in advance.

Did you use setNumberFormat method to set format for value in that column ?

No, I am using custom cell type for formatting values.

Built in total counters doesn’t support such use-case ( can be added through code modification )
If you are using custom logic you can use next code
var editor = grid.cells(id,ind); //id and ind - coordinates of cell with the same type in the grid
editor.cell = document.getElementById(“custom_area”);
editor.setValue(“new value”); //will be set to the custom_area