Specifies whether the generated chart should be static or animated. Static charts are faster to generate than animated ones
object.AnimateChart( animate )
Default: a chart is always animated.
The following JScript code illustrates use of the AnimateChart method in a ASP page.
chart.SetSeparators(";", true); chart.SetDataFromQuery(); chart.LoadStyle("C:\\myStyle.scs"); // Let's display a static chart chart.AnimateChart(false); chart.ExportAsResponse();
Applies To: Chart Object