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

Specifies the maximum date, which the multiViewCalendar can show.

Example - specify the maximum date

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