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

Specifies whether the generated chart should be static or animated. Static charts are faster to generate than animated ones.

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

Remarks

Default: a chart is always animated.

Sample Code

The following code illustrates use of the Animated property.

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

' Let's display a static chart 
chart.Animated= False
C#
chart.SetDataFromTxtFile("C:\\myData.txt");
chart.LoadStyle("C:\\myStyle.scs");

// Let's display a static chart 
chart.Animated= false;

Applies To: Chart Object