We're using KendoReact components but finding the animations distracting - how can we disable them by default?
In jQuery kendo there was kendo.effects.disable()
is there anything like that for KendoReact?
1 Answer, 1 is accepted
0
Wissam
Telerik team
answered on 23 Aug 2023, 08:26 AM
Hello, Christopher,
In KendoReact, the is not an option that disables the animation of all components explicitly.
However, multiple components allow you to disable their animations using their props. For example, you can disable the Chart animations by setting its transitions prop to `false`. Moreover, The Popover and Popup components have an animate property that you can set to `false`. You can also disable the Popup animation of the DropDownList using its popupSettings property:
<DropDownList popupSettings={{ animate: false}}>
You can check if each components has an option to disable its animation by checking its API page. For example, this is the API page of the ProgressBar component: