Controls how suggested actions (quick actions attached to specific messages) are displayed. Similar to ChatSuggestionsLayoutMode, it offers three layout options: Wrap (default) wraps actions to the next line, Scroll shows actions in a single line with horizontal scrolling, and ScrollButtons adds navigation buttons to the horizontal scrolling.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public enum ChatSuggestedActionsLayoutMode
Fields
Suggested actions are displayed in a single line with horizontal scrolling. Use when you want to preserve a compact single-row layout without wrapping.
Scroll = 1
Suggested actions are displayed in a single line with horizontal scrolling and navigation buttons. Use when you want explicit controls for navigating through long action lists.
ScrollButtons = 2
Suggested actions wrap to the next line when they exceed the available width. This is the default behavior and improves readability on smaller viewports.
Wrap = 0