Namespace: GlobFX.SwiffChartGenerator
Assembly: GlobFX.SwiffChartGenerator (in GlobFX.SwiffChartGenerator.dll)
Specifies whether the generated Flash chart should be looping or not.
Public Property Looping As Boolean
public bool Looping { get; set; }
A boolean value that specifies whether the Flash chart is looping or not.
Default: defined by the chart style.
The following code illustrates use of the Looping property.
chart.SetDataFromTxtFile("C:\\myData.txt")
chart.LoadStyle("C:\\myStyle.scs")
' Disable animation looping
chart.Looping = False
chart.SetDataFromTxtFile("C:\\myData.txt");
chart.LoadStyle("C:\\myStyle.scs");
// Disable animation looping
chart.Looping= false;
Applies To: Chart Object