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

Specifies the maximum date, which the calendar can show.

Example - specify the maximum date

<input id="datetimepicker" />
<script>
$("#datetimepicker").kendoDateTimePicker({
    max: new Date(2013, 0, 1, 22, 0, 0)
});
</script>
In this article