ITableOverallTotalMeasureValue
Home > @gooddata/sdk-ui > ITableOverallTotalMeasureValue
ITableOverallTotalMeasureValue interface
This API is provided as an alpha preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Numeric cell at the **overall grand-total** intersection (bottom-right corner) aggregating across *all* rows and columns.
**Visual example:**
| Q1 | Q2 | ColSum Σ |
-----------+-----+-----+----------+
USA | 100 | 120 | 220 |
CAN | 80 | 90 | 170 |
RowSum Σ | 180 | 210 | 390 | <- 390 is overallTotalValue
Signature:
export interface ITableOverallTotalMeasureValue
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
columnDefinition | ITableGrandTotalColumnDefinition | (ALPHA) Column context - grand-total column since this is the grand-total row × grand-total column intersection. | |
columnIndex | number | (ALPHA) Zero-based column position in the data matrix. | |
formattedValue | string | null | (ALPHA) Human-readable formatted overall total value (e.g., "$50,000.00"). | |
rowDefinition | ITableGrandTotalRowDefinition | (ALPHA) Row context - grand-total row since this is the grand-total row × grand-total column intersection. | |
rowIndex | number | (ALPHA) Zero-based row position in the data matrix. | |
type | "overallTotalValue" | (ALPHA) Discriminator literal for narrowing the ITableDataValue union. | |
value | DataValue | (ALPHA) Raw overall total value from the backend. |