New to Kendo UI for Angular? Start a free 30-day trial
BreadCrumbCollapseMode
Defines the collapse mode of the Breadcrumb. This type provides settings to control how the breadcrumb handles overflow scenarios when there is not enough space to display all items.
The available values are:
auto
—Items are automatically collapsed based on the width of the Breadcrumb. First and last item always remain visible.wrap
—Items are wrapped on multiple rows when their total width is bigger than the width of the BreadCrumb.none
—All items are expanded on the same row. This scenario is useful when you need to scroll the Breadcrumb.
For more information and example refer to the Collapse Modes article.
type
BreadCrumbCollapseMode = "auto" | "wrap" | "none";