Top 10 Features of .NET MAUI Scheduler | Syncfusion Blogs
Live Chat Icon For mobile
Live Chat Icon
Popular Categories.NET  (174).NET Core  (29).NET MAUI  (207)Angular  (109)ASP.NET  (51)ASP.NET Core  (82)ASP.NET MVC  (89)Azure  (41)Black Friday Deal  (1)Blazor  (217)BoldSign  (14)DocIO  (24)Essential JS 2  (107)Essential Studio  (200)File Formats  (66)Flutter  (133)JavaScript  (221)Microsoft  (119)PDF  (81)Python  (1)React  (100)Streamlit  (1)Succinctly series  (131)Syncfusion  (917)TypeScript  (33)Uno Platform  (3)UWP  (4)Vue  (45)Webinar  (51)Windows Forms  (61)WinUI  (68)WPF  (159)Xamarin  (161)XlsIO  (36)Other CategoriesBarcode  (5)BI  (29)Bold BI  (8)Bold Reports  (2)Build conference  (8)Business intelligence  (55)Button  (4)C#  (148)Chart  (131)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (63)Development  (629)Doc  (8)DockingManager  (1)eBook  (99)Enterprise  (22)Entity Framework  (5)Essential Tools  (14)Excel  (40)Extensions  (22)File Manager  (7)Gantt  (18)Gauge  (12)Git  (5)Grid  (31)HTML  (13)Installer  (2)Knockout  (2)Language  (1)LINQPad  (1)Linux  (2)M-Commerce  (1)Metro Studio  (11)Mobile  (507)Mobile MVC  (9)OLAP server  (1)Open source  (1)Orubase  (12)Partners  (21)PDF viewer  (43)Performance  (12)PHP  (2)PivotGrid  (4)Predictive Analytics  (6)Report Server  (3)Reporting  (10)Reporting / Back Office  (11)Rich Text Editor  (12)Road Map  (12)Scheduler  (52)Security  (3)SfDataGrid  (9)Silverlight  (21)Sneak Peek  (31)Solution Services  (4)Spreadsheet  (11)SQL  (10)Stock Chart  (1)Surface  (4)Tablets  (5)Theme  (12)Tips and Tricks  (112)UI  (387)Uncategorized  (68)Unix  (2)User interface  (68)Visual State Manager  (2)Visual Studio  (31)Visual Studio Code  (19)Web  (593)What's new  (332)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)
Top 10 Features of .NET MAUI Scheduler

Top 10 Features of .NET MAUI Scheduler

Syncfusion’s .NET MAUI Scheduler component has nine built-in configurable view modes that provide all the common scheduling functionalities. Users can efficiently create and manage appointments and display them in different views. The component exposes a user interface for customized working days and hours, as well as basic operations like viewing daily, all day, and spanned appointments; date navigation; selection; and data binding to load various databases.

In this blog, I will show you the top 10 features of the .NET MAUI Scheduler control:

  1. Different calendar views
  2. Recurrence events
  3. Loading events on demand
  4. Change first day of the week
  5. Time zones
  6. Flexible working days (nonworking days)
  7. Highlighting working hours
  8. Flexible date navigation and restriction
  9. Localization and globalization
  10. Completely customizable UI

Different calendar views

The .NET MAUI Scheduler control provides nine built-in views to display dates that can be used to schedule appointments or events easily. The Scheduler control displays the day view by default, but it can be changed using the View property.

The views are grouped into the following categories:

Timeslot views

Timeslot views can display the 24-hour calendar either in a vertical or horizontal timeslot view.

  • Vertical timeslot view
    • Day
    • Week
    • Workweek
  • Horizontal timeslot view
    • Timeline day
    • Timeline week
    • Timeline workweek

.NET MAUI Scheduler control week view
.NET MAUI Scheduler Control Week View

.NET MAUI Scheduler control timeline week view
.NET MAUI Scheduler Control Timeline Week View

Month views

The Scheduler control displays events or appointments on a date basis with two types of month views: month and timeline month.

.NET MAUI Scheduler controlmonth view
.NET MAUI Scheduler Control Month View

.NET MAUI Scheduler control timeline month view
.NET MAUI Scheduler Control Timeline Month View

Agenda view

The agenda view displays the events or appointments (normal, all-day, recurring, and span appointments) in chronological order, grouped by date.

An agenda view displays a different UI for mobile and desktop. For mobile, it displays the month header, the week header, and the date header, whereas for desktop, it displays the appointments only.

Note:  When the desktop view width is less than 600 pixels, the Scheduler control will display the mobile agenda UI on the desktop.

.NET MAUI Scheduler Control Agenda View
.NET MAUI Scheduler Control Agenda View

Recurrence events

Easily configure recurring events to schedule your regular appointments and make it easier to keep up with repeating events such as anniversaries, birthdays, or meetings that occur on a daily, weekly, monthly, or yearly basis. You can also skip or change an occurrence of a recurring appointment.

.NET MAUI Scheduler control recurring event
.NET MAUI Scheduler Control Recurring Events

Loading events on demand

Load events and appointments on-demand in scheduler views based on the visible date range. This functionality enhances the loading speed of your application while fetching data.

Load appointments on demand in the .NET MAUI Scheduler control
Loading Appointments On-Demand in the .NET MAUI Scheduler Control

Change the first day of the week

The .NET MAUI Scheduler control allows you to change the calendar first day of the week to any day of the week. Sunday is set as the default.

Change first day of the week in the .NET MAUI Scheduler control
Change the First Day of the Week in the .NET MAUI Scheduler Control

Time zones

The .NET MAUI Scheduler control is compatible with different time zones and takes into account daylight saving time. The Scheduler control detects the local time zone by default. You can also control the time zone setting using the TimeZone property to specify it externally.

Flexible working days (nonworking days)

You can display only your workdays in workweek and timeline workweek views. Hide nonworking days using the NonWorkingDays property of DaysView or TimelineView.

Flexible working days in the .NET MAUI Scheduler control
Flexible Working Days in the .NET MAUI Scheduler Control

Highlight working hours

Highlight the timeslots of working and nonworking hours using the TimeRegions property of the DaysView or TimelineView.

Highlight working hours in .NET MAUI Scheduler control
Highlighting Working Hours in .NET MAUI Scheduler

Flexible date navigation and restriction

Forward and backward buttons

The .NET MAUI Scheduler control allows you to navigate through dates either programmatically or by using the forward and backward buttons. This works in all Scheduler views.

Allowed views

Using the AllowedViews property, you may quickly switch among different scheduler views. In the scheduler header, these views will appear as buttons. There will be icons available for all platforms, as this UI will be responsive.

Minimum and maximum dates

Prevent navigation beyond the specified minimum and maximum dates. This keeps users from selecting dates outside the specified time range.

Selectable day predicate (blackout dates)

Disable any date in the Scheduler control to block the selection of that date. Create appointments using the SelectableDayPredicate functions. Only the days that SelectableDayPredicate returns true will be selectable in the Scheduler.

Selectable day predicate in .NET MAUI Scheduler control
Selectable Day Predicate in .NET MAUI Scheduler

Localization and globalization

Localization is the process of translating the application text into a different language for a specific culture. The .NET MAUI Scheduler control’s custom string can be localized by adding a resource file. With this feature, you can easily reach global users by allowing them to manage appointments in their native culture and language.

Completely customizable UI

One of the most important features of a scheduler is the ability to customize its appearance. The look and feel of all Syncfusion Scheduler UI elements can be easily customized to meet your application requirements. Refer to the following documentation references:

Customizable UI in .NET MAUI Scheduler Control
Customizable UI in .NET MAUI Scheduler Control

GitHub reference

For more details, refer to our .NET MAUI Scheduler control demo on GitHub.

Conclusion

Thanks for reading! In this blog, we have seen the top 10 features of the Syncfusion .NET MAUI Scheduler control. The Scheduler also offers data binding from different data sources, customizable start and end hours, hiding leading and trailing dates, and more. Use these versatile features to design a real-time application, like a mobile calendar.

If you have any feedback, special requirements, or controls that you’d like to see in our .NET MAUI suite, please let us know in the comments section below.

If you have questions, you can contact us through our support forumsupport portal, or feedback portal. We are always happy to assist you!

Test Flight
App Center Badge
Google Play Store Badge
Microsoft Badge
Github Store Badge

Related blogs

Tags:

Share this post:

Popular Now

Be the first to get updates

Subscribe RSS feed

Be the first to get updates

Subscribe RSS feed