toolbar.animation.collapse.effects String
Configures the effects for the collapse animation of the toolbar.
Example
<div id="chat"></div>
<script>
$("#chat").kendoChat({
toolbar: {
animation: {
collapse: {
effects: "expandVertical fadeIn"
}
},
toggleable: true,
buttons: [
{ name: "ButtonA", iconClass: "k-icon k-i-gear" },
{ name: "ButtonA", iconClass: "k-icon k-i-gear" }
]
}
});
</script>