views.months Number (default: 12)

Configures the number of months that will be displayed in the year view calendar.

The months option is supported when views.type is set to "year".

Example - set the number of months rendered in the year view calendar

<div id="scheduler"></div>

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