Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Some time ago I have seen a qlik app in which you can fade in and out the columns by clicking a button (or some other control element?). At least it looks like a button for me.
So, if you click once, the column appears, I click a second time and it vanishes. by clicking a third time it appears again.
I am trying to built something similar but it won't work.
Thank you for your help.
Create a button with an action with setting up a variable value 0 and 1. use this variable in conditional show in your column.
Hello,
Now in qlik sense you have the straight table chart in which you can do this easly,
Are you using qlik sense and which version ?
Regards,
Thank you, this works for one direction.
But I would need two buttons, one for fading in, one for fading out. I have seen a app in which it works with only one single button for both actions.
'So, if you click once, the column appears, I click a second time and it vanishes. by clicking a third time it appears again.' - this can be achieved with one button itself like i said above.
if you want two button: then probbably you need to differen variables to hadle this flow.
Hi @Joo525 ,
Try this: In the button options select Action: Set Variable value.
Select your variable you plan to use to show/hide elements (mine here called vTimeHorizon) and type into Value field:
=IF(vTimeHorizon=1,0,1)
This way you can have on/off switch on single button.
Hope this helps 🙂