New to Telerik UI for .NET MAUI? Start a free 30-day trial
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.
- 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.
xaml
<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>