steps Object
An object with the different steps for incrementing/decrementing the various segments
Example - sets the steps
<input id="dateinput" />
<script>
$("#dateinput").kendoDateInput({
steps: {
hour: 2,
minute: 10
}
});
</script>