ITableGrandTotalSubtotalMeasureValue
Home > @gooddata/sdk-ui > ITableGrandTotalSubtotalMeasureValue
ITableGrandTotalSubtotalMeasureValue 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 **intersection of row and column subtotals + grandtotals** – the *subtotals of grandtotals*.
**Visual example**
// Column grand total + row subtotal:
| Q1 | ColSum Σ |
-----------+-----+----------+
Sum A | 100 | 220 | <- 220 is grandTotalSubtotalValue
// Row grand total + column subtotal:
| Q1 | Sum A |
-----------+-----+-------+
USA | 100 | 120 |
RowSum Σ | 180 | 210 | <- 210 is grandTotalSubtotalValue
Signature:
export interface ITableGrandTotalSubtotalMeasureValue
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
columnDefinition | ITableSubtotalColumnDefinition | ITableGrandTotalColumnDefinition | (ALPHA) Column context - subtotal column or grand-total column. | |
columnIndex | number | (ALPHA) Zero-based column position in the data matrix. | |
formattedValue | string | null | (ALPHA) Human-readable formatted intersection total value (e.g., "$15,000.00"). | |
rowDefinition | ITableSubtotalRowDefinition | ITableGrandTotalRowDefinition | (ALPHA) Row context - grand-total row or subtotal row. | |
rowIndex | number | (ALPHA) Zero-based row position in the data matrix. | |
type | "grandTotalSubtotalValue" | (ALPHA) Discriminator literal for narrowing the ITableDataValue union. | |
value | DataValue | (ALPHA) Raw aggregated value at the intersection of row and column totals. |