This feature allows you to animate the series as it loads a new data source. The available animation differs depending on the type of series involved. For example, the column series animates by rising from the x-axis, a line series animates by drawing from the y-axis. The chart resizes allowing for the title and subtitle information.
By default, animated transitions are disabled and you can enable transition-in animations by setting the isTransitionInEnabled option to “True”.
Animated transitions can be configured in terms of transition type, speed of the individual data points relative to each other, and the easing transition (managed by an easing function).
Many types of animated transitions are supported based on the nature of the movement and its direction:
Accordion-type transitions:
Expand – Series expands from the value midpoints.
The transition’s speed type determines the speed of the individual items of the current series’s transition relative to each other as the animated transition is playing. The following are the different speed types:
The easing function determines what way the animation initially eases in. Apply any easing function. It is set to CubicEase by default.
The transition type is configured by setting the transitionInMode option to the desired transition name. Automatic selection of the transition type based on the series type is possible, too, by setting the property to “Auto” (default).
The following example demonstrates how to enable transition in animations and have the chart accordion in from the right.
In HTML:
$(function () {
$("#chart").igCategoryChart({
dataSource: data,
chartType: "auto",
isTransitionInEnabled: true,
transitionInDuration: 500,
transitionInEasingFunction:"cubic"
});
});
View on GitHub