animation.open.durationNumber(default: 200)
The duration of the open animation in milliseconds.
Example
<input id="dropdowntree" />
<script>
$("#dropdowntree").kendoDropDownTree({
dataSource: [
{ text: "Item 1", value: 1 },
{ text: "Item 2", value: 2 }
],
animation: {
open: {
duration: 400
}
}
});
</script>
In this article