TableConfig constructor
const
TableConfig({
- required String visualType,
- required String visualName,
- required String title,
- required String query,
- List<
ColumnConfig> rowIndex = const [], - List<
ColumnConfig> valuesConfig = const [], - required List<
ColumnConfig> columns, - int fixedColumns = 0,
- bool totals = false,
- bool topN = false,
- String? sortColumn,
- String? sortOrder,
- bool dataTreeStartExpanded = false,
- bool treeEnabled = false,
- bool headerFilter = false,
- bool selectableRows = false,
- bool showSelectionChips = true,
Implementation
const TableConfig({
required this.visualType,
required this.visualName,
required this.title,
required this.query,
this.rowIndex = const [],
this.valuesConfig = const [],
required this.columns,
this.fixedColumns = 0,
this.totals = false,
this.topN = false,
this.sortColumn,
this.sortOrder,
this.dataTreeStartExpanded = false,
this.treeEnabled = false,
this.headerFilter = false,
this.selectableRows = false,
this.showSelectionChips = true,
});