Optional
displayThe display name of this column.
If no displayName
has been configured, propertyName will serve as a fallback value.
If propertyName
is also undefined, no column header will be rendered at all.
Optional
getDefine this function to return a custom property value for this column.
This can be used to create derived columns (by combining multiple properties into one value) or to create columns for property that don't exist directly on the feature.
The return value of this function will be rendered by the table.
Optional
idUse this option to define an explicit column id. This can be helpful to track your column when it moves in the table (for example, the sort order can be maintained).
If this is not defined, propertyName will serve as a fallback. If that is also not defined, the column index will be used instead.
It is recommended to specify an id, if no propertyName has been set, because the column index fallback is not advised.
Optional
propertyThe property name to render.
The value is expected to be available as feature.properties[propertyName]
.
See also getPropertyValue.
Optional
renderCustom render function to render a table cell in this column.
Optional
widthThe width of this column, in pixels.
Configures a column in the result list component.
A column typically renders a property from the underlying feature.