ai.aiAssistantWindow.animation.open.durationNumber
Defines the duration of the opening animation.
Example - configure AI AssistantWindow opening animation duration
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [{ field: "name" }],
dataSource: [{ name: "Jane Doe" }],
toolbar: ["aiAssistant"],
ai: {
service: "https://demos.telerik.com/service/v2/ai/grid/smart-state",
aiAssistantWindow: {
animation: {
open: {
duration: 400
}
}
}
}
});
</script>
In this article