The component that configures the group settings of the component.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class SchedulerGroupSettings : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender
Inheritance: objectComponentBaseSchedulerGroupSettings
Implements:
Inherited Members
Constructors
public SchedulerGroupSettings()
Methods
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides:
Properties
Controls whether resource groups display horizontally or vertically in the Scheduler. Horizontal creates side-by-side resource columns. Vertical stacks resource groups in separate horizontal sections. The orientation affects both visual layout and scrolling behavior of grouped appointments.
[Parameter]
public SchedulerGroupOrientation Orientation { get; set; }
Specifies which resources should group the appointments in the Scheduler display. Provide a list of resource field names that correspond to SchedulerResource Field properties. Grouping organizes appointments by resource values, showing separate sections for each resource category. Example: new List<string> { "RoomId", "PersonId" } groups by room first, then by person.
[Parameter]
public List<string> Resources { get; set; }