RowSummary
Defines a Row Summary used in a Layout
TypeScript
export interface RowSummary extendsExtends
Properties
| Property | Description | Default |
|---|---|---|
| ColumnsMap | Map of Columns with Summary Expressions | |
| IncludeOnlyFilteredRows | Evaluates only currently filtered rows in the summary | true |
| Position | Where Row Summary appears - 'Top' or 'Bottom' | |
| IsReadOnly | Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full') | |
| IsSuspended | Suspends (i.e. turns off) an Adaptable Object |
Property Details
ColumnsMap
Map of Columns with Summary Expressions
TypeScript
ColumnsMap: Record<string, SummarySupportedExpression>;Property Value
Record<string, SummarySupportedExpression>
IncludeOnlyFilteredRows
Evaluates only currently filtered rows in the summary
TypeScript
IncludeOnlyFilteredRows?: boolean;Default Value
true
Property Value
boolean
Position
Where Row Summary appears - 'Top' or 'Bottom'
TypeScript
Position?: RowSummaryPosition;Property Value
IsSuspended
Inherited from SuspendableObject
Suspends (i.e. turns off) an Adaptable Object
TypeScript
IsSuspended?: boolean;Property Value
boolean
IsReadOnly
Inherited from AdaptableObject
Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')
TypeScript
IsReadOnly?: boolean;Property Value
boolean