min Date(default: "00:00")

Specifies the start value in the popup list.

Example - specify a minimum selectable time

<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker({
    min: new Date(2000, 0, 1, 8, 0, 0) //date part is ignored
});
</script>
In this article