range.end Date

This sets the end date of the range selection.

Example - show three months at same time

<div id="multiViewCalendar"></div>
<script>
    $("#multiViewCalendar").kendoMultiViewCalendar({
        range: {
            start: new Date(2016, 10, 11),
            end: new Date(2016, 10, 22)
        }
    });
</script>
In this article