Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
naamah
Contributor III
Contributor III

pie chart view data

Hi,

I user pie chart with the default of 10 slices and 'Others'. But when I choose 'View Data' (a pivot displayed instead of the         chart), I want to display every particular value under 'Others' . Is there any way to do this?

Labels (1)
3 Solutions

Accepted Solutions
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

I dont think so that is possible, you may have to try some different way to achieve that.

 

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!

View solution in original post

vinieme12
Champion III
Champion III

This is possible by using a calculated dimension

Example

using dummy data

in data load editor Press CTRL + 00(press 0 twice)  to generate dummy data

 

In Chart use dimension

=aggr(if(min(total aggr(rank(sum({<Alpha=>}Expression1),4,2),Alpha))>10,Alpha,if(rank(sum({<Alpha=>}Expression1),4,2)<=10,Alpha,'Others')),Alpha)

 

Expression

sum(Expression1)

view_others.gif

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

vinieme12
Champion III
Champion III

why not use a container instead?

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

4 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

I dont think so that is possible, you may have to try some different way to achieve that.

 

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
vinieme12
Champion III
Champion III

This is possible by using a calculated dimension

Example

using dummy data

in data load editor Press CTRL + 00(press 0 twice)  to generate dummy data

 

In Chart use dimension

=aggr(if(min(total aggr(rank(sum({<Alpha=>}Expression1),4,2),Alpha))>10,Alpha,if(rank(sum({<Alpha=>}Expression1),4,2)<=10,Alpha,'Others')),Alpha)

 

Expression

sum(Expression1)

view_others.gif

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
naamah
Contributor III
Contributor III
Author

Hi Vineeth

this is real greate, thank you! 

i would like to challange you 🙂 ...when i view data i want it to display all values. means all the others but also the top 10... 

thanks!

vinieme12
Champion III
Champion III

why not use a container instead?

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.