Hi there,
I just figured out the great summary features of the UltraGrid. Now I have one question left:
I want to have summaries per group (which works without any tweaks) AND some kind of overall summaries. For example my grid is grouped by "article type". So I have summaries for each single article type. Additionally I want to have summaries for all article types at the end of the grid.
How can I achieve this behavior?
Best regards
Achim
Thank you Mike. That was not the precise correct answer to my special case but it directed me to the fact, that SummaryDisplayAreas is an enumeration which can contain _more_ than one location. So in my case the following code within InitializeLayout was correct:
SummarySettings s = e.Layout.Bands[0].Summaries.Add(SummaryType.Sum, e.Layout.Bands[0].Columns[2]); s.SummaryDisplayArea = SummaryDisplayAreas.BottomFixed | SummaryDisplayAreas.RootRowsFootersOnly;
Hi Achim,
I think all you need to do is change the SummaryDisplayAreas property to include one of the fixed top or bottom areas.