Determines whether a chart is animated or not.
object.IsAnimated
If the chart object is animated, this method returns true; otherwise, it returns false.
The following VBScript example sets the data and loads the graphics settings of a given chart object. Then it disables the chart animation if it is enabled.
chart.SetDataFromQuery chart.LoadStyle "C:\myStyle.scs" 'If the chart is animated, make it static If chart.IsAnimated Then chart.AnimateChart false End If chart.ExportAsResponse
Applies To: Chart Object