New to Telerik UI for WPFStart a free 30-day trial

Column Footers

Updated on Sep 15, 2025

RadGridView allows you to display additional information which applies to the columns in a specific row placed at the bottom of the control. This row consists of individual footer cells for each column.

By default, column footers are hidden and in order to make them visible you have to set the ShowColumnFooters property to True.

Example 1: Show column footers

XAML
	<telerik:RadGridView ShowColumnFooters="True">
	  <!-- ... -->
	</telerik:RadGridView>

To set the value of the footer cells, you can use the Footer property of the columns.

Example 2: Set the content of the footer cells

XAML
	<telerik:GridViewDataColumn Header="ID" DataMemberBinding="{Binding EmployeeID}" Footer="Footer cell" />

Telerik WPF DataGrid Column Footers 1

Because it is of type object, you are not limited to just using plain text. For example, you can add a corresponding picture to the footer text.

Example 3: Adding an image to the footer content

XAML
	<telerik:GridViewDataColumn Header="ID" DataMemberBinding="{Binding EmployeeID}">
	  	<telerik:GridViewDataColumn.Footer>
			<Grid>
				<Grid.ColumnDefinitions>
					<ColumnDefinition Width="Auto" />
					<ColumnDefinition />
				</Grid.ColumnDefinitions>
				<Image Stretch="None" Source="../../Images/User.png" Margin="0,0,5,0" />
				<TextBlock Text="The Id of the employee" VerticalAlignment="Center" TextWrapping="Wrap" Grid.Column="1" />
			</Grid>
	  	</telerik:GridViewDataColumn.Footer>
	</telerik:GridViewDataColumn>

Telerik WPF DataGrid Column Footers 2

Aggregates

Column footers are also used to display aggregated information on the data displayed in the column via aggregate functions.

Example 4: Adding an aggregate function to a column

XAML
	<telerik:GridViewDataColumn Header="ID" DataMemberBinding="{Binding EmployeeID}"> 
		<telerik:GridViewDataColumn.AggregateFunctions> 
			<telerik:CountFunction Caption="Count:	" /> 
		</telerik:GridViewDataColumn.AggregateFunctions> 
	</telerik:GridViewDataColumn>

Telerik WPF DataGrid Column Footers 3

To learn more about aggregate functions please have a look at this article.

Please note that if the Footer property is explicitly defined, it will take precedence over the aggregate results.

See Also

In this article
AggregatesSee Also
Not finding the help you need?
Contact Support