Configuration metadata for table columns. Used to customize column behavior and appearance.
const columnMeta: ColumnMeta = { filterVariant: "range", uniqueValues: ["ACS", "Technical", "USP"], rangeValues: [0, 1000], style: { width: "200px" }}; Copy
const columnMeta: ColumnMeta = { filterVariant: "range", uniqueValues: ["ACS", "Technical", "USP"], rangeValues: [0, 1000], style: { width: "200px" }};
Optional
Type of filter to use for this column
List of all possible unique values for select filters
Minimum and maximum values for range filters
Custom CSS styles to apply to the column
Configuration metadata for table columns. Used to customize column behavior and appearance.
Example