Interface ISummaryRow
Defines common functionality for a GridSummaryRow for displaying the summary value.
Namespace: Syncfusion.Data
Assembly: Syncfusion.Data.Portable.dll
Syntax
public interface ISummaryRow
  Properties
Name
Gets or sets the name of the summary row.
Declaration
string Name { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | The name of the summary row.  | 
      
ShowSummaryInRow
Gets or sets a boolean value indicating whether to show summary in row.
Declaration
bool ShowSummaryInRow { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | True if summary is shown in row, otherwise false.  | 
      
SummaryColumns
Gets the collection of summary columns in the summary row.
Declaration
ObservableCollection<ISummaryColumn> SummaryColumns { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Collections.ObjectModel.ObservableCollection<ISummaryColumn> | The collection of summary columns in the summary row.  | 
      
Title
Gets or sets the title of the summary row, which contains the summary to be displayed in the summary row, if the ShowSummaryInRow is true.
Declaration
string Title { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | The title of the summary row, which contains the summary to be displayed in the summary row, if the ShowSummaryInRow is true.  |