New to Kendo UI for Angular? Start a free 30-day trial
Disabling Chart Animations
Environment
Product | Progress® Kendo UI for Angular |
Description
I update the data of the Kendo UI for Angular Chart dynamically and the user experience with the Chart animations is not good. How can I disable the animations of the Kendo UI for Angular Chart?
Solution
Set the transitions
property of the ChartComponent
to false
.
html
<kendo-chart
[transitions]="false"
[series]="chartSeries"
>
</kendo-chart>