PivotResultColumnHeaderContext
Context for Pivot Result Columns
TypeScript
export interface PivotResultColumnHeaderContext extendsExtends
Properties
| Property | Type | Description |
|---|---|---|
| aggregatedColumnId | string | Id of Pivot Aggregated Column |
| aggregation | string | Aggregation function of Column |
| columnId | string | Id of generated Column |
| columnType | 'pivotResultColumn' | Pivot Result Column (unique intersection of PivotAggregationColumn and PivotColumn) |
| pivotKeys | string[] | Current Pivot Keys |
| adaptableContext | any | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
aggregatedColumnId
Id of Pivot Aggregated Column
TypeScript
aggregatedColumnId: string;Property Value
string
aggregation
Aggregation function of Column
TypeScript
aggregation: string;Property Value
string
columnId
Id of generated Column
TypeScript
columnId: string;Property Value
string
columnType
Pivot Result Column (unique intersection of PivotAggregationColumn and PivotColumn)
TypeScript
columnType: 'pivotResultColumn';Property Value
'pivotResultColumn'
pivotKeys
Current Pivot Keys
TypeScript
pivotKeys: string[];Property Value
string[]
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any