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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to lock master visualization

Hi,

Could someone help with my issue. I would like to lock a chart in a dashboard from all selection and interactions. I tried to do that in Dev Hub single configurator by disabling selection/interaction. But for some reason it still interacting if choose something in the filter panes or click on other graphs on the page.

1 Solution

Accepted Solutions
OmarBenSalem

Just in your expression for the chart, add {1}

I mean, from :

sum(Measure)

=> sum({1}Measure)

or from

sum({<some conditions here>}Measure)

to

sum({1<some conditions here>}Measure)


with that, ur chart won't change when u filter

View solution in original post

3 Replies
agigliotti
Partner - Champion
Partner - Champion

What's the reason why your chart should be "locked" ?

OmarBenSalem

Just in your expression for the chart, add {1}

I mean, from :

sum(Measure)

=> sum({1}Measure)

or from

sum({<some conditions here>}Measure)

to

sum({1<some conditions here>}Measure)


with that, ur chart won't change when u filter

Anonymous
Not applicable
Author

Hi, thank you. This solved the issue.