Enum BreadcrumbOverflowMode
Specifies how to display Breadcrumb items in SfBreadcrumb component when the Breadcrumb items exceeds Breadcrumb container or MaxItems property.
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public enum BreadcrumbOverflowMode
Fields
| Name | Description |
|---|---|
| Collapsed | Only the first and last items will be visible, and the remaining items will be hidden with collapsed icon. When the collapsed icon is clicked, all items become visible and scroll will be enabled if the space is not enough to show all items. |
| Hidden | The specified MaxItems count will be visible and the remaining items will be hidden. While clicking on the previous item, the hidden item will become visible. |
| Menu | Shows the number of Breadcrumb items that can be accommodated within the container space, and creates a sub menu with the remaining items. |
| None | Shows all the items on a single line. |
| Scroll | Shows an HTML scroll bar when the Breadcrumb’s width exceeds the container space. |
| Wrap | Wraps the items on multiple lines when the Breadcrumb’s width exceeds the container space. |