min Date(default: Date(1900, 0, 1))

Specifies the minimum date, which the multiViewCalendar can show.

Example - specify the minimum date

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