Current behavior may cause aggregations to seem inaccurate:, example:
Set Precision to '0', the following set of readings is truncated as follows:
- 0.3->0;
- 0.8->0; 0.99->0;
- 0.8->0
Using default aggregation causes calculated value to seem inaccurate:
Sum: 2.89 is rounded to 2, but as all readings are displayed as '0' the calculation seems very wrong: 0+0+0+0=2.
Feature: Rounding to nearest specified precision value would create the following:
- 0.3->0;
- 0.8->1; 0.99->1;
- 0.8->1
Sum: 3 (as 2.89 should be rounded to 3)
Status: Under Review