Specifies whether the generated Flash chart should be looping or not.
void object.SetLooping( boolean looping )
Default: defined by the chart style.
The following JSP code illustrates use of the SetLooping method.
chart.SetDataFromTxtFile("C:\\myData.txt");
chart.LoadStyle("C:\\myStyle.scs");
// Disable animation looping
chart.SetLooping(false);
chart.ExportAsResponse();
Applies To: Chart Object