Project

General

Profile

feature request #8771

Updated by Andreas Kohlbecker over 4 years ago

The display of decimal place for average value should be adjusted so that it differs from the values on min and max (typical upper and lower bound) by one digit. The number of visible decimal places should not be lower than that of the least precise min or max value 

 e.g (min - mean - max).: e.g.: 

 * 12.23 - 13.2345 - 14.2 => **12.23 - 13.2 - 14.2** 
 * 5 - 4.234325 - 6 => **5 - 4 - 6** 
 * 6.3467 - 6.3477 - 6.3482 => **6.3467 - 6.347 - 6.3482**  
 * 0.00000001 -    0.500000001 - 1 => **0.00000001 -    0.5 - 1** 
 * 0,123457- 0,1234565 - 0,123456 => **0,123457- 0,1234565 - 0,123456**

Back