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

Specifies the minimum date that the calendar can show.

Example - specify the minimum date

<input id="datepicker" />
<script>
$("#datepicker").kendoDatePicker({
    min: new Date() // sets min date to today's date
});
</script>
In this article