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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
venkat1
Creator II
Creator II

By Selecting the list box chart should display or else it should hide

Hi

There is list box and and a chart,if there is no selection on the list box then graph should hide.

If i select any one of the fields from the list box then graph should display.

1 Solution

Accepted Solutions
settu_periasamy
Master III
Master III

Hi,

In the chart properties -> Layout -> Show Conditional

=GetSelectedCount([Sales Order ID])>0

View solution in original post

2 Replies
MindaugasBacius
Partner - Specialist III
Partner - Specialist III

Use GetSelectedCount:
https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/ChartFunctions/FieldFunctions/ge...
And in the Layout properties of the chart in the Show area selected Conditional and type like:
If(GetSelectedCount(YourField)=0, False(), True())
settu_periasamy
Master III
Master III

Hi,

In the chart properties -> Layout -> Show Conditional

=GetSelectedCount([Sales Order ID])>0