When not selecting "Multi-select", if nothing is selected a graph will show blank. Is there a work around that if nothing is selected the graph will show all?
@Cathal Keating : You can use the setting When no values are selected in the dropdown control. It specifies what happens when no values are selected in the “Dropdown” control. There are two options:
Show unfiltered chart data: Does not filter the connected charts
Show no chart data: Shows no data for the connected charts
This is only for multi - select right?
If I didn't want multi - select is there an option to show unfiltered chart data when no item is selected from dropdown?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Cathal Keating Sorry - I misinterpreted your question (I thought you meant if you do not select multiple values). For Single select controls, there is no such setting to show all data.
But a workaround could be to do it as part of a step after you get results from the query.
See my example below where {ISSUE_TYPE} is a single-select filter. I have created a Custom column with statement:
case when {ISSUE_TYPE} = "Issue type" then 1 when {ISSUE_TYPE} = '' then 1 else 0 end
Then I filter the data where the value of this column is 1.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Cathal Keating ,
I'm just going to move this to the appropriate product group so members there can hopefully help you out.
Cheers,
Tobi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.