ReportData
Defines the data in a Report run by AdapTable
TypeScript
export interfaceProperties
| Property | Type | Description |
|---|---|---|
| columns | ReportColumn[] | Columns in the Report |
| groupColumnIds | string[] | Group columns IDs in the Report |
| pivotColumnIds | string[] | Pivot columns IDs in the Report |
| rows | Record<string, any>[] | Row Data in the Report |
Property Details
columns
Columns in the Report
TypeScript
columns: ReportColumn[];Property Value
groupColumnIds
Group columns IDs in the Report
TypeScript
groupColumnIds?: string[];Property Value
string[]
pivotColumnIds
Pivot columns IDs in the Report
TypeScript
pivotColumnIds?: string[];Property Value
string[]
rows
Row Data in the Report
TypeScript
rows: Record<string, any>[];Property Value
Record<string, any>[]