workDayEnd Date
Sets the end of the work day when the "Show business hours" button is clicked.
Example - set the workDayEnd of the scheduler
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
date: new Date("2013/6/6"),
workDayEnd: new Date("2013/1/1 5:00 PM"),
dataSource: [
{
id: 1,
start: new Date("2013/6/6 08:00 AM"),
end: new Date("2013/6/6 09:00 AM"),
title: "Interview"
}
]
});
</script>