Determines whether a chart is looping or not.
object.IsLooping( )
If the chart object is looping, this method returns true; otherwise, it returns false.
The following JScript example sets the data and loads the graphics settings of a given chart object. Then it disables looping if it is enabled.
chart.SetSeparators(";", true); chart.SetDataFromQuery(); chart.LoadStyle("C:\\myStyle.scs"); // Disable looping if the chart is looping if( chart.IsLooping() ) chart.SetLooping(false); chart.ExportAsResponse();
Applies To: Chart Object