Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
mhmmd_srf
Creator II
Creator II

Hiding a Chart on Selectio

Hi All,

I have a chart and I want to hide that chart when user will select any Value from Region Text Box.

How to do this?

Please help.

Thanks,

Sarif

1 Solution

Accepted Solutions
Anil_Babu_Samineni

May be use this condition in layout tab for chart

If(GetSelectedCount(Region)>0, 0, 1)

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

2 Replies
Anil_Babu_Samineni

May be use this condition in layout tab for chart

If(GetSelectedCount(Region)>0, 0, 1)

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable

Go to layout tab of chart properties and click on conditional show and use following in conditional show,

if(GetFieldSelections(Region),0,1)

Thanks,

Pooja