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

The aggregate context object of the column available in the Footer template. Contains properties for the result of all possible aggregate functions, namely Count, Sum, Average, Min and Max, along with a list of all AggregateResult.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class FooterTemplateContext

Inheritance: objectFooterTemplateContext

Constructors

C#
public FooterTemplateContext()

Properties

Defines a collection of all aggregate results from the Grid Data.

C#
public List<AggregateResult> AggregateResults { get; set; }

The calculated Average of the Grid Data.

C#
public decimal? Average { get; set; }

The calculated Count of the Grid Data.

C#
public int? Count { get; set; }

The calculated Max of the Grid Data.

C#
public decimal? Max { get; set; }

The calculated Min of the Grid Data.

C#
public decimal? Min { get; set; }

The calculated Sum of the Grid Data.

C#
public decimal? Sum { get; set; }