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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

marco Always Fully Expanded

Hi,

i have Pivot Table (CH02)

how can i with the marco changed the "Always Fully Expanded" and not "Fully Expanded"

set chart = ActiveDocument.getSheetObject("CH02")
set chartProperties = chart.GetProperties
Thanks
1 Solution

Accepted Solutions
Not applicable
Author

The API Guide is a QVW containing pretty much everything you need to know about building macros. I believe it should be installed in your Documentation folder. You can also download it from the QlikView site. I use it so much, I seem to have copies of it saved everywhere. Big Smile

I like to use the Automation Examples tab. If you search in the Methods box for what you're trying to do, you can usually find a good example to at least get you started.

View solution in original post

4 Replies
Not applicable
Author

Are you trying to set the Chart property so it is always fully expanded?

If so, use this after what you have (according to the API Guide):

chartProperties.TableProperties.PivotAlwaysFullyExpanded = true
chart.SetProperties chartProperties


Not applicable
Author

Hi,

Thanks

what is according to the API Guide (how can i find it ?)

Not applicable
Author

Hi,

it works. Thank you very much!

Not applicable
Author

The API Guide is a QVW containing pretty much everything you need to know about building macros. I believe it should be installed in your Documentation folder. You can also download it from the QlikView site. I use it so much, I seem to have copies of it saved everywhere. Big Smile

I like to use the Automation Examples tab. If you search in the Methods box for what you're trying to do, you can usually find a good example to at least get you started.