|
<SfSchedule TValue="AppointmentData" Height="550px" SelectedDate="@(new DateTime(2020, 1, 31))">
<ScheduleEvents TValue="AppointmentData" OnPopupOpen="@OnPopupOpen"></ScheduleEvents>
<ScheduleEventSettings DataSource="@DataSource">
</ScheduleEventSettings>
</SfSchedule>
@code{
public void OnPopupOpen(PopupOpenEventArgs<AppointmentData> args)
{
if (args.Type == PopupType.Editor)
{
args.Duration = 15; // To Change the event duration
}
}
...
} |
|
<SfSchedule TValue="AppointmentData" Height="650px">
<ScheduleTimeScale Interval="60" SlotCount="4"></ScheduleTimeScale> // To set 15 minutes time slot duration for Scheduler
</SfSchedule> |