EnumPanelBarExpandMode
Controls the expansion behavior of PanelBar items, determining how many items can be expanded simultaneously. Use this to create accordion-style behavior or allow multiple expanded sections based on your UI requirements.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public enum PanelBarExpandMode
Fields
Multiple
Allows multiple PanelBar items to remain expanded simultaneously, giving users full control over panel visibility. Users can expand and collapse items independently without affecting the state of other items. Best suited for scenarios where users need to compare content or maintain context across multiple sections.
Single
Restricts expansion to only one PanelBar item at a time, creating accordion-style behavior. When a user expands a new item, any previously expanded items at the same level are automatically collapsed. Ideal for conserving screen space and maintaining a clean, organized layout with focused content viewing.