Example of Individual View Settings in ASP.NET Core Scheduler Control
This demo illustrates how to customize each view with specific configurations like applying event template on agenda view, setting different start/end hour to day and week views and enabling grouping in month view. It also shows how to hide the weekend days and to set different time intervals on week view.
In this demo, the
views
property is defined to accept the array of view options and therefore for each view, it is possible to set different
configurations. In day view, the
startHour
is set to 7 and
endHour
set to 18 whereas in week view, the same is set as 9 and 19 respectively. Also, the
showWeekend
property is set to false only on week view along with different timescale interval. The customized template is applied
to the events on Agenda view and on month view, the grouping functionality is enabled by setting
group
property.