Views Overview
The Telerik UI for .NET MAUI Scheduler control provides the functionality of displaying the data in different views. The control defines four predefined views from which you can choose to navigate through.
The Views is part of Telerik UI for .NET MAUI, the most comprehensive UI suite for .NET MAUI! To try it out, sign up for a free 30-day trial and kickstart your cross-platform app development today.
- Day View—Displays the appointments of a single day.
- Week View—Displays the appointment of a week.
-
Multiday View—Displays the appointments of a specified number of days starting from
CurrentDate
. - Month View—Displays the appointments of a month.
Define the Views
Define the available to the user views by adding them to the ViewDefinitions
collection of the control. In addition, ActiveViewDefinitionIndex
and ActiveViewDefinition
properties are used to define the currently active view.
<telerik:RadScheduler AutomationId="scheduler" CurrentDate="10/18/2023">
<telerik:RadScheduler.ViewDefinitions>
<telerik:WeekViewDefinition />
<telerik:WeekViewDefinition IsWeekendVisible="False" Title="Work Week" />
<telerik:MultidayViewDefinition VisibleDays="3" Title="3 Day" />
<telerik:DayViewDefinition />
<telerik:MonthViewDefinition />
</telerik:RadScheduler.ViewDefinitions>
</telerik:RadScheduler>