Wijmo UI for the Web
seriesTransition Option
wijmo.chart.wijcompositechart Namespace > options type : seriesTransition Option

Type: wijmo.chart.chart_animation

The seriesTransition option is used to animate series in the chart when just their values change.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  wijmo.chart.chart_animation
    returnsValue = $(".selector").wijcompositechart("option", "seriesTransition");
    
    // Set value
    var newValue; // Type:  wijmo.chart.chart_animation
    $(".selector").wijcompositechart("option", "seriesTransition", newValue);
        
});
var seriesTransition : chart_animation;
Remarks
This is helpful for visually showing changes in data for the same series. Note: When programmatically updating the seriesList with a different number of series in the array make sure to disable seriesTransition like the following: seriesTransition: { enabled: false}
See Also

Reference

options type
wijcompositechart jQuery Widget