grid footer total

Hello, I need a clarification, I’m using the functionality of the total in the grid footer. Totals are rounded how do I avoid this? see img
thanks Claudio

Unfortunately the issue cannot be reconstructed locally.
What statistic shortcut do you use?
Please, provide a sample of your code to reconstruct the issue.

Hello Sematik,
I prepared a simple code with the xml file so that you can reproduce the problem
Thanks, Claudio
var windows = new dhtmlXWindows();

var window_1 = windows.createWindow('window_1', 0, 0, 1024, 700);

var grid_1 = window_1.attachGrid();
grid_1.setIconsPath('./codebase/imgs/');

grid_1.setHeader(["Column 1","Column 2","Column 3","Column 4","Column 5","Column 6"]);
grid_1.setColTypes("ro,ro,ro,ro,ro,ro");

grid_1.attachFooter(["","","#stat_total","#stat_total","#stat_total",""]);
grid_1.setColSorting('str,str,str,str,str,str');
grid_1.init();
grid_1.load('./xml/gri.xml', 'xml');
<?xml version="1.0" encoding="ISO-8859-1" ?> 1

Dot “.” in the number is a decimal mark. a symbol used to separate the whole part from the fractional part of a number written in decimal form.
If you need to use the extended format of numbers in the grid, please, try to use setNumberFormat() method (works for “edn”, “ron” excell only):
docs.dhtmlx.com/doku.php?id=dhtm … mberformat