Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Runnning an animated graph using macro

hi, i am having many animated graphs in a sheet, and i wanted to run it automaticaly when the sheet is activated.Bookmark is not helping out this issue.Any suggestions is appreciated.

2 Replies
Not applicable
Author

Hi nandhini!

Just tick the Autopla y and the chart will automatically play or animate once the sheet is activated. (see below).

Lester

rustyfishbones
Master II
Master II

You can use a Macro from the API Guide

As long as your animated chart is "CH01", if not just change to what it is in the code below

SUB Animate

set chart = ActiveDocument.GetSheetObject("CH01")

set p = chart.GetProperties

p.ChartProperties.AnimationProperties.AutoPlay = true

chart.SetProperties p

END SUB