Hi,
I have noticed that summary calculator does not get invoked and does not aggregate values when summary display area is set to None. I tried to customize the example 'Accessing Summary Results in Code' when I noticed after setting the display are to none the summary result in the top-right did not get updated.
Regards,Peter
PS: I don't want to show any specific row in the grid for summaries, but want to use the result of the calculation
Hello Peter,
You can create a style for the SummaryResultPresenter and set its Visibility property to collapsed if you want to keep the functionality and display no summaries.
<Style TargetType="{x:Type igDP:SummaryResultPresenter}">
<Setter Property="Visibility" Value="Collapsed"/>
</Style>
Let me know if you have any more questions on this.
Thanks for that. It works if you want to hide the text in the summary record row. I have set the summaryDisplayArea to BottomFixed. So the text was erased due to styling, but the row was there. I would like to get rid of the row completely.
I thought I can achive this by setting the SummaryDisplayArea to None, but in that case the aggregation stopped working.