New to Kendo UI for Angular? Start a free 30-day trial
TileLayoutFlowMode
The flow modes controls how auto-placed items are arranged in the TileLayout. For further reference, check the grid-auto-flow CSS article.
The available values are:
- column(Default)—Sets the grid-auto-flow CSS property of the TileLayout to column.
- column-dense—Sets the grid-auto-flow CSS property of the TileLayout to column dense.
*row—Sets the grid-auto-flow CSS property of the TileLayout to row.
*row-dense—Sets the grid-auto-flow CSS property of the TileLayout to row dense.
*none—Does not apply the grid-auto-flow CSS property. In this case the default behavior of the CSS Grid Layout will be used.
type TileLayoutFlowMode = "none" | "row" | "column" | "row-dense" | "column-dense";