Hi!
There is a problem in the summation of fractional numbers.
Example:
5.20
6.40
and so on
by 330.29999999999995
Form of record
$ col ["formatter"] = "UNSIGNED";
$ col ["summaryType"] = "sum";
What's the problem?
2 Answers
Use this formatter settings.
$col["formatter"] = "number";
$col["formatoptions"] = array("thousandsSeparator" => ",",
"decimalSeparator" => ".",
"decimalPlaces" => 2);
Your Answer