You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When double fields are used in an aggregation, only the integer part of the values is aggregated, remaining fractions are omitted.
I believe that is because in line 44 of aggregator.cs the sourceItem.GetField method is missing the type parameter and the default resolution gets the wrong type.
Supplying the type paramter fixed the issue on my machine.
The text was updated successfully, but these errors were encountered:
When double fields are used in an aggregation, only the integer part of the values is aggregated, remaining fractions are omitted.
I believe that is because in line 44 of aggregator.cs the sourceItem.GetField method is missing the type parameter and the default resolution gets the wrong type.
Supplying the type paramter fixed the issue on my machine.
The text was updated successfully, but these errors were encountered: