max Date(default: Date(2099, 11, 31))

Specifies the maximum date, which the calendar can show.

Example - specify the maximum date

<div id="calendar"></div>
<script>
    $("#calendar").kendoCalendar({
        max: new Date(2013, 0, 1) // set the max date to Jan 1st, 2013
    });
</script>
In this article