We have a rounding issue with midpoint rounding in syncfusion reports. Reduced to a trivial example:
- create a new report in SF report designer (wpf 4.1.0.25)
- add a textfield with following expression:
=Round(15.735,2,System.MidpointRounding.AwayFromZero) -> result = 15.74 -> correct
now we set the expression to:
=Round(15.725,2,System.MidpointRounding.AwayFromZero) -> result = 15.72 -> wrong in terms of midpoint away from zero rounding
Any ideas about that,
thanks and kind regards