Version

Please note that this control has been retired and is now obsolete to the XamDataGrid control, and as such, we recommend migrating to that control. It will not be receiving any new features, bug fixes, or support going forward. For help or questions on migrating your codebase to the XamDataGrid, please contact support.

Display Summary Row in xamGrid GroupBy Headers

Topic Overview

Purpose

This topic demonstrates how to display summary row information in the GroupBy headers of grouped rows in the xamGrid™ control.

Required background

You need to first read the following topics:

Introduction

By default the GroupBy header displays the columns’ value and also a count of the number of the rows in the xamGrid grouping. However, through the use of templates, you can customize the GroupBy header to display summary information, such as the average value of a particular column of the grouped rows.

You can customize the header by setting the Column’s GroupByItemTemplate property to an instance of a data template. The data context of this data template is of type GroupByDataContext

For the purpose of this topic, the properties directly related only to displaying summaries are discussed. For more information on the Value, Record and Count properties, see the Custom GroupBy Row Display topic.

The following is a list of the GroupByItemDataContext’s properties required for displaying summary row in GroupBy headers:

  • SummaryResults – Contains the information related to the summary that is executed on the columns in the particular column layout. It contains information such as the SummaryDefinition and the Value.

  • SummaryLookupResults – Contains the same results from SummaryResults, however, it is organized in a dictionary of column keys, for easier lookup:

    • Dictionary <string, List<SummaryResultsCollection>>

  • GroupBySummaryResults – Contains the summary results specific to particular field that the GroupByContext represents. The GroupBySummaryDefinitions property allows you to set the SummaryDefinitions that is applied when a particular column is grouped.

  • GroupBySummaryLookupResults – Contains the same results from GroupBySummaryResults however, it is organized in a dictionary of column keys for easier lookup.

    • Dictionary <string, List<SummaryResultsCollection>>

Preview

Following is a preview of the final result. The screenshot displays the Unit Price column grouped in a grid using the GroupBy feature. The GroupBy header displays the average value of the Unit Price column and the maximum value of the Units on Order column in the grouped rows.

xamGrid DisplaySummaryRowinGroupByHeaders 01.png

Requirements

To complete the procedure, you need the following:

Overview

Following is a conceptual overview of the process:

  1. Defining GroupBySummaryDefinitions

  2. Setting the Column’s GroupByItemTemplate

Steps

  1. Define GroupBySummaryDefinitions

The GroupBySummaryDefinitions property allows you to set SummaryDefinitions that are applied when that particular column is grouped.

The following code snippet demonstrates how to set the sum summary on the UnitPrice column, and the average summary on the UnitsInStock column.

In XAML:

<!-- GroupBy Summary Definitions-->
<ig:TextColumn.SummaryColumnSettings>
   <ig:SummaryColumnSettings>
      <ig:SummaryColumnSettings.GroupBySummaryDefinitions>
         <!--Set Sum summary for UnitsInStock column-->
         <ig:SummaryDefinition ColumnKey="UnitPrice">
            <ig:SummaryDefinition.SummaryOperand>
               <ig:SumSummaryOperand/>
            </ig:SummaryDefinition.SummaryOperand>
         </ig:SummaryDefinition>
         <!--Set Average summary for UnitsInStock column-->
         <ig:SummaryDefinition ColumnKey="UnitsInStock">
            <ig:SummaryDefinition.SummaryOperand>
               <ig:AverageSummaryOperand/>
            </ig:SummaryDefinition.SummaryOperand>
         </ig:SummaryDefinition>
      </ig:SummaryColumnSettings.GroupBySummaryDefinitions>
   </ig:SummaryColumnSettings>
</ig:TextColumn.SummaryColumnSettings>
  1. Set the Column’s GroupByItemTemplate.

..

Create a data template containing a ListBox control. ..

Create a Style that targets the ListBox control. ..

Use the Style’s Setter properties to set the values on the ListBox properties. ..

Set ListBoxItem to contain a ContentPresenter ..

Set the Background to Transparent ..

Set the BorderThickness to zero ..

Set the ItemTemplate to display the summary’s operand and value.

In XAML:

<!--GroupBy Item Template -->
<ig:TextColumn.GroupByItemTemplate>
   <!-- Set Data Template -->
   <DataTemplate>
      <StackPanel Orientation="Vertical">
         <StackPanel.Resources>
            <!-- Create a style for the ListBox that will display the summary values-->
            <Style TargetType="ListBox" x:Key="MyListBox">
               <Setter Property="ItemContainerStyle">
                  <Setter.Value>
                     <Style TargetType="ListBoxItem">
                        <Setter Property="Template">
                           <Setter.Value>
                              <ControlTemplate TargetType="ListBoxItem">
                                 <Grid>
                                    <ContentPresenter/>
                                 </Grid>
                              </ControlTemplate>
                           </Setter.Value>
                        </Setter>
                     </Style>
                  </Setter.Value>
               </Setter>
               <Setter Property="Background" Value="Transparent"/>
               <Setter Property="BorderThickness" Value="0"/>
               <!-- Create a data template for the ItemTemplate.-->                <!-- Display the summary operand and the value in the data template -->
               <Setter Property="ItemTemplate">
                  <Setter.Value>
                     <DataTemplate>
                        <StackPanel Orientation="Vertical">
                           <StackPanel Orientation="Horizontal">
                              <TextBlock FontSize="13" FontWeight="Bold"
               Text="{Binding SummaryDefinition.SummaryOperand.RowDisplayLabelResolved}"/>
                              <TextBlock FontSize="13" FontWeight="Bold" Text=" :  "/>
                              <TextBlock FontSize="13" FontWeight="Bold" Text="{Binding Value}"/>
                           </StackPanel>
                        </StackPanel>
                     </DataTemplate>
                  </Setter.Value>
               </Setter>
            </Style>
         </StackPanel.Resources>
         <!-- TODO: Bind the ListBox to the GroupBySummaryLookupResults -->
      </StackPanel>
   </DataTemplate>
</ig:TextColumn.GroupByItemTemplate>
  1. Bind the ListBox control to the GroupBySummaryLookupResults.

The following code listing implements the following actions:

..

Binds the ListBox ItemsSource property to the GroupBySummaryLookupResults ..

Sets the ListBox ItemsPanel property to contain a stack panel ..

Sets the ListBox’s ItemContainerStyle to contain a ContentPresenter ..

Sets the ListBox’s ItemTemplate to a data template that contains a TexBlock where the Text is set to the Column’s Key and a ListBox where the Style is set to the ListBox style defined in step 1.

In XAML:

         <TextBlock Text="{Binding Value}"/>
         <!-- Bind the ListBox to the GroupBySummaryLookupResults -->
         <ListBox ItemsSource="{Binding GroupBySummaryLookupResults}"  Background="Transparent" BorderThickness="0">
            <ListBox.ItemsPanel>
               <ItemsPanelTemplate>
                  <StackPanel Orientation="Horizontal"/>
               </ItemsPanelTemplate>
            </ListBox.ItemsPanel>
            <ListBox.ItemContainerStyle>
               <Style TargetType="ListBoxItem">
                  <Setter Property="Template">
                     <Setter.Value>
                        <ControlTemplate TargetType="ListBoxItem">
                           <Grid>
                              <ContentPresenter/>
                           </Grid>
                        </ControlTemplate>
                     </Setter.Value>
                  </Setter>
               </Style>
            </ListBox.ItemContainerStyle>
            <ListBox.ItemTemplate>
               <DataTemplate>
                  <Grid Width="200">
                     <Grid.RowDefinitions>
                        <RowDefinition Height="20"/>
                        <RowDefinition Height="*"/>
                     </Grid.RowDefinitions>
                     <TextBlock Text="{Binding Key}" FontWeight="Bold" FontSize="12"/>
                     <ListBox Grid.Row="1" ItemsSource="{Binding Value}" Style="{StaticResource MyListBox}"/>
                  </Grid>
               </DataTemplate>
            </ListBox.ItemTemplate>
         </ListBox>
</ig:TextColumn.GroupByItemTemplate>

Following are some other topics you may find useful.