Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Radio Button for enabling / disabling conditional dimensions

Hi There,

Is there a way to enable / disable conditional dimensions in a chart using radio buttons (List box - Selection Style -> LED Check Box).

Instead of using text box objects (buttons) to trigger dimension change using variables.

Thanks all,

Abhay

2 Replies
Not applicable
Author

Hi Abhay,

Yes if you use a field and listbox like that, you can use an Index() evaluation on the conditional calculation, to look at if a certain selection is made in that field and show/hide accordingly

hope that helps

Joe

kristoferahlin
Partner - Contributor III
Partner - Contributor III

You can create an inline table for the show/hide radio buttons:

For example:

ShowHide:

Load * Inline [

  ShowId , %Show

  0 , Hide

  1 , Show

];

Use %Show as dimension in radio button list box and condition ShowId = 1 on the dimensions you want to enable.

Cheers,

Kristofer