views.startDateDate
Configures the start date of the year view. The Scheduler will display 12 months starting from the startDate.
The
startDateoption is supported when views.type is set to "year".
Example - set the start date
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  views: [
    {
      type: "year",
      startDate: new Date("2021/2/1")
    }
  ],
  dataSource: [
    {
      id: 1,
      start: new Date("2021/2/2 08:00 AM"),
      end: new Date("2021/2/2 09:00 AM"),
      title: "Interview"
    }
  ]
});
</script>In this article