Version

Separating and Aligning Summaries of Grouped Rows

The WinGrid™ by default displays summaries in group-by rows by appending the summaries to the group-by row description text. You can instead display each summary as a separate UI element aligned with columns in the group-by row.

  1. Before you start writing any code, you should place using/imports directives in your code-behind so you don’t need to always type out a member’s fully qualified name.

In Visual Basic:

Imports Infragistics.Win.UltraWinGrid

In C#:

using Infragistics.Win.UltraWinGrid;
  1. To enable this functionality set the GroupBySummaryDisplayStyle property to SummaryCells or SummaryCellsAlwaysBelowDescription. The difference between the SummaryCells and the SummaryCellsAlwaysBelowDescription is that the SummaryCells option will auto wrap the summaries if one of the summary cells overlaps with the description of the group-by row. The SummaryCellsAlwaysBelowDescription on the other hand will always wrap the summaries so they are always below the group-by row description. When summaries are wrapped the height of the group-by row is increased and the summary cells are displayed below the group-by row description.