Specifies whether the generated Flash chart should be looping or not.

void object.SetLooping( boolean looping ) 

Arguments

object
Required. A Chart object.
looping
Required. A boolean value that specifies whether the Flash chart is looping or not.

Remarks

Default: defined by the chart style.

JSP Sample Code

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();

See Also

IsLooping Method

Applies To: Chart Object