What’s New in 2021 Volume 2: Blazor 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  (219)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  (101)Streamlit  (1)Succinctly series  (131)Syncfusion  (918)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#  (149)Chart  (131)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (63)Development  (632)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  (11)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  (596)What's new  (333)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)
What’s New in 2021 Volume 2: Blazor Scheduler

What’s New in 2021 Volume 2: Blazor Scheduler

The Blazor Scheduler is a versatile event calendar component that helps users manage their time efficiently. It facilitates easy resource scheduling and the rescheduling of events or appointments through editor pop-ups, drag and drop, and resizing actions. In this blog post, I’ll quickly introduce the new features included in the Blazor Scheduler component for the 2021 Volume 2 release.

Performance improvement

We have improved the initial rendering performance of our Scheduler by 25% in the Blazor Server and WebAssembly app in this 2021 Volume 2 release. However, we suggest you define the required ScheduleView to get better performance.

Refer to the following code example.

<SfSchedule TValue=AppointmentData @bind-CurrentView="@CurrentView">
    <ScheduleViews>
        <ScheduleView Option="View.Day"></ScheduleView>
        <ScheduleView Option="View.Week"></ScheduleView>
        <ScheduleView Option="View.Month"></ScheduleView>
    </ScheduleViews>
</SfSchedule>
@code {
    View CurrentView = View.Day;
    public class AppointmentData
    {
        public int Id { get; set; }
        public string Subject { get; set; }
        public string Location { get; set; }
        public DateTime StartTime { get; set; }
        public DateTime EndTime { get; set; }
        public string Description { get; set; }
        public bool IsAllDay { get; set; }
        public string RecurrenceRule { get; set; }
        public string RecurrenceException { get; set; }
        public Nullable<int> RecurrenceID { get; set; }
    }
}

Performance metrics

The following metrics were taken after rendering 3,000 appointments without resource grouping.

Schedule ViewImprovement in Volume 2 as compared to Volume 1 (using .NET 5)
Day~+67%
Week~+50%
Workweek~+60%
Month~+30%
Agenda~+50%
Month Agenda~+50%
Year~+33%
Timeline Day~+17%
Timeline Week~+36%
Timeline Workweek~+42%
Timeline Month~+19%
Timeline Year~+18%

The following metrics were taken after rendering 3,000 appointments with 100 resources.

Schedule ViewImprovement in Volume 2 as compared to Volume 1 (using .NET 5)
Day~+25%
Week~+22%
Workweek~+15%
Month~+41%
Agenda~+33%
Month Agenda~+57%
Year~+18%
Timeline Day~+30%
Timeline Week~+52%
Timeline Workweek~+46%
Timeline Month~+57%
Timeline Year~+40%

Note: Even though we have improved the performance of our Blazor Scheduler at the source level, we should avoid some Blazor WebAssembly related functionalities while using the Scheduler events. For more information, refer to the WebAssembly performance in Blazor Scheduler component documentation.

Adaptive layout

This feature enables rendering a mobile-adaptive layout on desktop devices. It also lets you render a desktop view on mobile devices. If we render the Scheduler component in space-constrained areas, this feature helps enhance its view experience.

Set the EnableAdaptiveUI property to true to display the mobile view of the Scheduler on desktop devices.

In this 2021 Volume 2 release, we made these changes default in the Blazor Scheduler to render it on desktop devices:

  • View options displayed in the navigation drawer.
  • Plus icon in the header for new event creation.
  • Today icon in the header instead of the Today button.
  • Multiple resources: We show only one resource to enhance the viewer experience of resource events details. To switch to other resources, there is a tree view on the left that lists all the other available resources. Clicking on this will display the particular resource and its related events.
Adaptive Layout Support in Blazor Scheduler
Adaptive Layout Support in Blazor Scheduler                 

Note: For more information, refer to the Example of adaptive grouping in the Blazor Scheduler component and Adaptive UI in desktop documentation.

Year view interval support

The year view displays all the months and their related appointments for a particular year. From the 2021 Volume 2 release onward, you can customize the number of months to be displayed in a year and timeline year views in the Blazor Scheduler.

For example, you can show the months of a quarter in the Scheduler by setting the MonthsCount property to 4.

You can also customize the Blazor Scheduler like in the following screenshot, which displays months from April 2020 to September 2021.

Custom Year View Intervals in Blazor Scheduler
Custom Year View Intervals in Blazor Scheduler

Note: For more information, refer to the Example of year view in the Blazor Scheduler component and Show half-yearly view in Blazor Scheduler component documentation.

Print

Previously, you could print only the appointments visible in the viewport of an agenda view. Now, you can print all the appointments with custom options in the agenda view.

You can print the Scheduler layout by using the PrintAsync method. This feature also allows you to customize the width and height of the element.

Note: For more information, refer to the Example of printing in Blazor Scheduler Component and How to print the Scheduler element documentation.

Summary

Thanks for reading! In this blog, we have seen a quick overview of some of the major features included in our Blazor Scheduler in the 2021 Volume 2 release. To see all the updates in this release, please check our Release Notes and What’s New pages. Try out these new features and leave your feedback in the comments section!

For current customers, the new version is available for download from the License and Downloads page. If you are not yet a Syncfusion customer, you can start a 30-day free trial to check out these features.

Also, you can reach us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

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