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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
manoranjan_d
Specialist
Specialist

Default view

Hi all,

In my pie chart  i have  2 dimensions cyclic and drill down and one expression

now i want to show the drill down view as default view to the user how to achieve?

6 Replies
Anonymous
Not applicable

Are you labeling the dimension? does your drill down group name start with DD_?

try to give label in dimension view - label for Drill down start with A_ and label for cyclic start with B_

avinashelite

Cyclic and Drill Down in the same chart ??? could you show how your doing

manoranjan_d
Specialist
Specialist
Author

yes they are in the same chart

avinashelite

share the same app please

manoranjan_d
Specialist
Specialist
Author

pls let  me know your suggestions to achieve it

jerryyang756
Creator
Creator

Create a Inline table in  Script

InlineTab :

Load * Inline [

TNo,TName

1,Drill_Down

2,Cyclic

];

Load the Application.

Now Add condition for the Dimension as below

For DrillDown : GetFieldSelections(TName) = 'Drill_Down'

For Cyclic : GetFieldSelections(TName)= 'Cyclic'

Create a list box in the sheet for TName and Change the Title 'Select Group'. Now Select the 'Drill Down' from the list and go to properties of the list box . In 'General' tab check 'Always one selected Value'. Save the Application. It's done.

Capture23.PNG