Class GridGroupTemplateContextBase
Inheritance
System.Object
GridGroupTemplateContextBase
Namespace: Telerik.Blazor.Components.Grid.Grouping.Models
Assembly: Telerik.Blazor.dll
Syntax
public abstract class GridGroupTemplateContextBase : Object
Constructors
GridGroupTemplateContextBase()
Declaration
protected GridGroupTemplateContextBase()
Properties
Average
The calculated Average of the group items.
Declaration
public Nullable<Decimal> Average { get; set; }
Property Value
System.Nullable<System.Decimal>
|
Count
The calculated Count of the group items.
Declaration
public Nullable<int> Count { get; set; }
Property Value
System.Nullable<System.Int32>
|
Max
The calculated Max of the group items.
Declaration
public Nullable<Decimal> Max { get; set; }
Property Value
System.Nullable<System.Decimal>
|
Min
The calculated Min of the group items.
Declaration
public Nullable<Decimal> Min { get; set; }
Property Value
System.Nullable<System.Decimal>
|
Sum
The calculated Sum of the group items.
Declaration
public Nullable<Decimal> Sum { get; set; }
Property Value
System.Nullable<System.Decimal>
|
Methods
LoadFromDictionary(Dictionary<String, Object>)
Declaration
public void LoadFromDictionary(Dictionary<string, object> source)
Parameters
System.Collections.Generic.Dictionary<System.String, System.Object>
source
|