transitions Boolean (default: true)

If set to true the chart will play animations when displaying the series. By default animations are enabled.

Example - disable the chart animations

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  transitions: false,
  series: [
    { data: [1, 2, 3] }
  ]
});
</script>
In this article