animation: Object
Animations to be used for opening/closing the popup. Setting to false will turn of the animation.
close: Object
Animation to be used for closing of the popup.

Example

$("#timepicker").kendoTimePicker({
    animation: {
        close: {
            effects: "fadeOut",
            duration: 300,
            hide: true
            show: false
        }
    }
});
open: Object
Animation to be used for opening of the popup.

Example

$("#timePicker").kendoTimePicker({
    animation: {
        open: {
            effects: "fadeIn",
            duration: 300,
            show: true
        }
    }
});
format: String(default: h:mm tt)
Specifies the format, which is used to parse value set with value() method.
interval: Number(default: 30)
Specifies the interval, between values in the popup list, in minutes.
max: Date(default: 00:00)
Specifies the end value in the popup list.
min: Date(default: 00:00)
Specifies the start value in the popup list.
value: Date(default: null)
Specifies the selected time.