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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

macro

how to maximize or activate a chart using macro

1 Reply
Not applicable
Author

try to use this as your reference:

set c=ActiveDocument.GetSheetObject("CH01")

if c.IsMaximized then

c.Restore

else

c.Maximize

end if