Namespace: GlobFX.SwiffChartGenerator
Assembly: GlobFX.SwiffChartGenerator (in GlobFX.SwiffChartGenerator.dll)

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

Visual Basic
Public Property Looping As Boolean
C#
public bool Looping { get; set; } 

Property Value

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

Remarks

Default: defined by the chart style.

Sample Code

The following code illustrates use of the Looping property.

Visual Basic
chart.SetDataFromTxtFile("C:\\myData.txt")
chart.LoadStyle("C:\\myStyle.scs")

' Disable animation looping 
chart.Looping = False
C#
chart.SetDataFromTxtFile("C:\\myData.txt");
chart.LoadStyle("C:\\myStyle.scs");

// Disable animation looping 
chart.Looping= false;

Applies To: Chart Object