allDaySlotBoolean(default: true)
If set to true the scheduler will display a slot for "all day" events.
The option is a shorthand to the view's
allDaySlotoption. To define thedaySlotvisibility using a data- attribute set the views.allDaySlot option directly.
Example - hide the all day slot
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  allDaySlot: false,
  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