workWeekEnd Number (default: 5)

The end of working week (index based).

The workWeekEnd option is supported when views.type is set to "day" or "week".

Example - set the end day of the work week to Saturday

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  workWeekEnd: 6,
  dataSource: [
    {
      id: 1,
      start: new Date("2013/6/6 08:00 AM"),
      end: new Date("2013/6/6 09:00 AM"),
      title: "Interview"
    }
  ]
});
</script>
In this article