transitionsBoolean
(default: false)
A value indicating if transition animations should be played.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "column",
transitions: true,
series: [{
data: [10, 15, 8, 12]
}]
});
</script>
In this article