How to Adjust Rounding of Displayed Outputs
All places where results are presented to a user are rounded to 2 decimal places by default. You can change this rounding setting globally by following these steps:
Navigate to CalculationLogic > AGR_ProcessingLib > elements.
Open MathUtils.groovy.
To set the global rounding, adjust the
decimalPlace
value within theround()
method (default =2
). You can also changeroundingMode
(default =HALF_UP
)
You can modify the rounding for individual outputs separately where the libs
.AGR_ProcessingLib
.MathUtils
.round()
method is used.