ReportData
Defines the data in a Report run by AdapTable
TypeScript
export interface ReportData
Properties
Property | Description |
---|---|
columns | Columns in the Report |
rows | Rows in the Report |
Property Details
columns
Columns in the Report
TypeScript
columns: AdaptableColumnBase[];
Property Value
rows
Rows in the Report
TypeScript
rows: Record<string, any>[];
Property Value
Record<string, any>[]