What's New in .NET MAUI Scheduler: 2022 Volume 2 | 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  (40)Black Friday Deal  (1)Blazor  (215)BoldSign  (14)DocIO  (24)Essential JS 2  (107)Essential Studio  (200)File Formats  (66)Flutter  (133)JavaScript  (221)Microsoft  (118)PDF  (81)Python  (1)React  (100)Streamlit  (1)Succinctly series  (131)Syncfusion  (914)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#  (147)Chart  (131)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (63)Development  (628)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  (592)What's new  (332)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)
What's New in .NET MAUI Scheduler 2022 Volume 2

What’s New in .NET MAUI Scheduler: 2022 Volume 2

Syncfusion’s .NET MAUI Scheduler control allows you to efficiently create, manage, and display appointments in various views.

In this blog, I will explain the new features of the .NET MAUI Scheduler included in the 2022 Volume 2 release.

Resources in timeline view

You can group appointments based on the resources associated with them in the timeline day, timeline week, timeline workweek, and timeline month views with complete business-object binding, multiresource appointment sharing, and UI customization features.

The .NET MAUI Scheduler also allows you to easily create a calendar for each resource and manage appointments based on its availability. Resources can be people, employees, or rooms, and their tasks or appointments can be easily handled to fit their availability.

For example, you can use this feature in doctor’s appointment management, project planning, conference room booking, and so on.

Refer to the following code example to add resources in the scheduler timeline views.
[XAML]

xmlns:schedule="clr-namespace:Syncfusion.Maui.Scheduler;assembly=Syncfusion.Maui.Scheduler"
  ...
  <Grid>
   <schedule:SfScheduler x:Name="Scheduler" 
                           View="TimelineMonth"
                           AppointmentsSource="{Binding Events}"  
                           AllowedViews="TimelineDay,TimelineMonth,TimelineWeek,TimelineWorkWeek">
     <schedule:SfScheduler.ResourceView>
     <schedule:SchedulerResourceView Resources="{Binding Resources}" 
                                     HeaderTemplate="{StaticResource ResourceHeaderTemplate}"/>
     </schedule:SfScheduler.ResourceView>
     <schedule:SfScheduler.BindingContext>
      <local:ResourceViewViewModel/>
     </schedule:SfScheduler.BindingContext>
   </schedule:SfScheduler>
  </Grid>
Resource View in the .NET MAUI Scheduler Timeline View
Resource View in the .NET MAUI Scheduler Timeline View

Note: You can check out a complete example of the resource view in the .NET MAUI Scheduler timeline view.

Calendar types

The .NET MAUI Scheduler allows you to set different calendar types based on the culture. You can enjoy the following calendar types in this 2022 Volume 2 release:

  • Gregorian
  • Hebrew
  • Hijri
  • Korean
  • Persian
  • Taiwan (ROC)
  • Thai Lunar
  • Japanese
  • Umm al-Qura

Refer to the following code example which sets the calendar type to Hijri.
[XAML]

xmlns:schedule="clr-namespace:Syncfusion.Maui.Scheduler;assembly=Syncfusion.Maui.Scheduler"
  ...
  <Grid>
   <schedule:SfScheduler x:Name="Scheduler" 
                           View="Week" 
                           CalendarType="Hijri"
                           AllowedViews="Day,Week,WorkWeek,Month,TimelineDay,TimelineMonth,TimelineWeek,TimelineWorkWeek,Agenda"/>
  </Grid>
Hijri Calendar in the .NET MAUI Scheduler
Hijri Calendar Type in the .NET MAUI Scheduler

Customizing the number of days visible in the time slot views

The .NET MAUI Scheduler now supports customizing the number of days visible in the day, week, workweek, timeline day, timeline week, and timeline workweek views.

Refer to the following code example which sets the number of visible days to three in the timeline week view.

[XAML]

xmlns:schedule="clr-namespace:Syncfusion.Maui.Scheduler;assembly=Syncfusion.Maui.Scheduler"
  ...
  <Grid>
   <schedule:SfScheduler x:Name="Scheduler" 
                           View="Week"
                           AllowedViews="Day,Week,WorkWeek,TimelineDay,TimelineWeek,TimelineWorkWeek">
     <schedule:SfScheduler.DaysView>
       <schedule:SchedulerDaysView NumberOfVisibleDays="3" />
     </schedule:SfScheduler.DaysView>
     <schedule:SfScheduler.TimelineView>
      <schedule:SchedulerTimelineView NumberOfVisibleDays="3" />
     </schedule:SfScheduler.TimelineView>
   </schedule:SfScheduler>
  </Grid>
Customizing the Number of Days Visible in the .NET MAUI Scheduler's Day View
Customizing the Number of Days Visible in the .NET MAUI Scheduler’s Day View

Customize the number of weeks visible in the month view

From the 2022 Volume 2 release onward, you can customize the number of weeks visible in the .NET MAUI Scheduler’s month view.

Refer to the following code example which sets the number of visible weeks to three.

[XAML]

xmlns:schedule="clr-namespace:Syncfusion.Maui.Scheduler;assembly=Syncfusion.Maui.Scheduler"
  ...
  <Grid>
   <schedule:SfScheduler x:Name="Scheduler" View="Month">
    <schedule:SfScheduler.MonthView>
     <schedule:SchedulerMonthView NumberOfVisibleWeeks="3" />
    </schedule:SfScheduler.MonthView>
   </schedule:SfScheduler>
  </Grid>
Customizing the number of visible weeks in the .NET MAUI Scheduler’s month view
Customizing the Number of Visible Weeks in the .NET MAUI Scheduler’s Month View

Conclusion

Thanks for reading! In this blog, we took a quick tour of the new user-friendly features of the .NET MAUI Scheduler included in our 2022 Volume 2 release. Refer to the .NET MAUI Scheduler documentation for more detailed explanations of each feature with code examples.

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

Also, 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