ColumnType
Column type discriminator. Drives default formatter, alignment, filter editor and cell editor behaviour.
'string'Default. Value displayed as is.'int'Value is displayed right-aligned.'decimal'Value is displayed right-aligned and formatted as local number incorporating angular LOCALE_ID.'date'Value is displayed in 'EEE, d MMM yyyy' format.'datetime'Value is displayed in 'd MMM yyyy H:mm:ss' format.'boolean'Boolean value.'map'Used specifically by. The value is displayed as configured inMapColumn valueMapparameter.'tick'Used specifically by. Renders a checkbox cell driven by aTickColumn .TickColumnController 'computed'Used specifically by. It doesn't have field parameter. The value to render is specified by theComputedColumn formatterargument.'group'Groups several columns. Used by.GroupedColumn
Presentation
type ColumnType =
| "string"
| "int"
| "decimal"
| "date"
| "datetime"
| "boolean"
| "map"
| "tick"
| "computed"
| "group";
