Class IgbDataGridSummaryResult
Represents the result of a summary.
Inheritance
System.Object
IgbDataGridSummaryResult
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbDataGridSummaryResult : BaseRendererElement, JsonSerializable
Constructors
IgbDataGridSummaryResult()
Declaration
public IgbDataGridSummaryResult()
Properties
GroupKey
Gets the group key which tells us which group the summary belongs to. This can be null if the summary
is a root level summary.
Declaration
public object[] GroupKey { get; set; }
Property Value
| Type |
Description |
| System.Object[] |
|
GroupKeyScript
Provides a means of setting GroupKey in the JavaScript environment.
Declaration
public string GroupKeyScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Operand
Gets the summary operand.
Declaration
public DataSourceSummaryOperand Operand { get; protected set; }
Property Value
PropertyName
Gets the summary property name.
Declaration
public string PropertyName { get; protected set; }
Property Value
| Type |
Description |
| System.String |
|
ShouldDisplay
Gets if this summary should be rendered in the output or not. Set to false for information only summaries.
Declaration
public bool ShouldDisplay { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
SummaryIndex
Gets the index of the summary description associated with this result.
Declaration
public int SummaryIndex { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Value
Declaration
public object Value { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
FromEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
ToEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Implements