Changing working times in Schedule

I see the standard working day is from 8:00am-4:00pm, but where do I go to change the end time to 5:00pm?


1 Reply

RM Rabina Murugan Syncfusion Team April 9, 2025 09:24 AM UTC

Hi Kevin Davis,

Your requirement to change the start and end times of the working hours can be achieved by setting the PrimeTimeStart and PrimeTimeEnd properties in the ScheduleControl.Appearance. Refer to the below code snippet,
C# code snippet related to Working hours start and end time :

//To set the start time

this.scheduleControl1.Appearance.PrimeTimeStart = 8;

 

//To set the end time

this.scheduleControl1.Appearance.PrimeTimeEnd = 18;

 


This will ensure the working hours are set from 8:00 AM to 5:00 PM.
Kindly refer to the following API reference link below:
Find the sample demo in the attachment. Please let us know if you need any further assistance.
If this post is helpful, please consider marking it as the accepted solution so that other members can locate it more easily.
Regards,
Rabina

Attachment: ScheduleControlPrimeTimeEnd_99c1a3e1.zip

Loader.
Up arrow icon