Unplanned
Last Updated: 15 Apr 2025 19:33 by Christian
Christian
Created on: 10 Apr 2025 12:23
Category: Charts
Type: Feature Request
1
Add CollapseMode parameter to TelerikChartBreadcrumb

Currently, the TelerikChartBreadcrumb does not allow specifying how the Breadcrumb items are visualized when their total width exceeds the width of the component.

A possible alternative to achieve the same result is to override the default theme styles with the following CSS rule:

.k-breadcrumb-container {
    flex-flow: row wrap;
}

Here is a REPL example to see the result of the above CSS approach - https://blazorrepl.telerik.com/GTOyPYbG23PugZBQ36

1 comment
Christian
Posted on: 15 Apr 2025 19:33
Would like this to support collapseMode: auto similar to the traditional breadcrumb so it can collapse down instead of wrapping and taking up vertical space on the page.