Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
dasaradh
Contributor III
Contributor III

Show and hide

I have combo chart

Dimension:  week/year

Exp1 :balance(representing line)

Exp2: interest(which is also line but representing symbols only.)

i want make hide and show interest using button, is it possible?

if it is possible how?

1 Solution

Accepted Solutions
gautik92
Specialist III
Specialist III

instead make 2 charts one for balance and 1 for interest

create a variable vEnable=1

create a button add external action set variable

vEnable

if(vEnable=1,0,1)

in chart layout tab conditional->vEnable=1

View solution in original post

7 Replies
qlikmsg4u
Specialist
Specialist

Use button and variable combination.

Check the variable, Button and conditional function of expression

gautik92
Specialist III
Specialist III

instead make 2 charts one for balance and 1 for interest

create a variable vEnable=1

create a button add external action set variable

vEnable

if(vEnable=1,0,1)

in chart layout tab conditional->vEnable=1

dasaradh
Contributor III
Contributor III
Author

i am using only combo chart not two charts

gautik92
Specialist III
Specialist III

is it mandatory to have a combo chart?

dasaradh
Contributor III
Contributor III
Author

yes ofcource

gautik92
Specialist III
Specialist III

then do one thing create another chart which have only balance and overlap it with combo chart and create a button set variable for enabling and disabling

dasaradh
Contributor III
Contributor III
Author

We can do in way

create Variable

vHide and assign value to 0

create a button add external action set variable

vHide

=if(vHide=1,0,1)

chart the exp u want make hide or visible enable conditional

vHide=1