Class
FooterTemplateContext

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:

cs-api-definition
public class FooterTemplateContext

Inheritance: objectFooterTemplateContext

Constructors

FooterTemplateContext()

Declaration

cs-api-definition
public FooterTemplateContext()

Properties

AggregateResults

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

Declaration

cs-api-definition
public List<AggregateResult> AggregateResults { get; set; }

Property Value

List<AggregateResult>

Average

The calculated Average of the Grid Data.

Declaration

cs-api-definition
public decimal? Average { get; set; }

Property Value

decimal?

Count

The calculated Count of the Grid Data.

Declaration

cs-api-definition
public int? Count { get; set; }

Property Value

int?

Max

The calculated Max of the Grid Data.

Declaration

cs-api-definition
public decimal? Max { get; set; }

Property Value

decimal?

Min

The calculated Min of the Grid Data.

Declaration

cs-api-definition
public decimal? Min { get; set; }

Property Value

decimal?

Sum

The calculated Sum of the Grid Data.

Declaration

cs-api-definition
public decimal? Sum { get; set; }

Property Value

decimal?