Hello,
if I use in handsontable a following calculation:
1,223-1,222 I got 0.001000000000000112
example here:
https://jsfiddle.net/janzitniak/4smjoLwb/29/
(I apologize I changed that example many times to better meets my needs
I would like to get right calculation result (0,001).
EDIT: I know I can change a pattern
numericFormat: {
pattern: "0.000",
culture: "de-DE",
}
but it rounds to 3 decimals. I need any decimal places depends on the situation.
Jan