toolbar.animation.expand.effects String

Configures the effects of the expand animation.

Example

<div id="chat"></div>
<script>
$("#chat").kendoChat({
    toolbar: {
        animation: {
            expand: {
                effects: "expandVertical fadeIn"
            }
        },
        toggleable: true,
        buttons: [
            { name: "ButtonA", iconClass: "k-icon k-i-gear" },
            { name: "ButtonA", iconClass: "k-icon k-i-gear" }
        ]
    }
});
</script>
In this article