New to Telerik UI for BlazorStart a free 30-day trial

The component that configures the group settings of the component.

Definition

Constructors

C#
public SchedulerGroupSettings()

Methods

C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters:__builderRenderTreeBuilder

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

C#
protected override Task OnInitializedAsync()
Returns:

Task

Overrides: ComponentBase.OnInitializedAsync()

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.

C#
[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.

C#
[Parameter]
public List<string> Resources { get; set; }