Specifies whether the generated chart should be looping or not.
object.SetLooping( looping )
Default: defined by the chart style.
The following JScript code illustrates use of the SetLooping method in a ASP page.
chart.SetSeparators(";", true); chart.SetDataFromQuery(); chart.LoadStyle("C:\\myStyle.scs"); // Disable animation looping chart.SetLooping(false); chart.ExportAsResponse();
Applies To: Chart Object