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

Specifies the minimum date that the calendar can show.

Example - specify the minimum date

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