ITableData
Home > @gooddata/sdk-ui > ITableData
ITableData type
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.
**The complete table data structure**.
This is the main interface that represents a fully processed table data with all the metadata needed to render pivot tables, flat tables, and transposed tables.
It contains the structural definitions (rows/columns), the actual cell data, and flags that describe the table layout and data interpretation.
Signature:
export type ITableData = {
columnDefinitions: ITableColumnDefinition[];
rowDefinitions: ITableRowDefinition[];
data: ITableDataValue[][];
isPivoted: boolean;
isTransposed: boolean;
};
References: ITableColumnDefinition, ITableRowDefinition, ITableDataValue