Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Label only one slice in a pie chart


Hi,

I have a requirement, where I need to label only one slice in a pie-chart.

I have set the Pie-popout property for a particular dimension value -

=

if([dimension] = ["xyz"],1,0)

I want to label only that pop out pie slice with the dimension and expression value.

Does any one have any ideas on how this can be done?

Thanks.

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Create another expression :

if([dimension] = ["xyz"],[dimension] , '' )

And tick "Values on Data Points" for it, and that should show your dimension value.

Then create another expression for your expression value, something like :

if([dimension] = ["xyz"]yourexpression , '' )


Also tick "Values on Data Points" for it, and that should show your expression value.

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Create another expression :

if([dimension] = ["xyz"],[dimension] , '' )

And tick "Values on Data Points" for it, and that should show your dimension value.

Then create another expression for your expression value, something like :

if([dimension] = ["xyz"]yourexpression , '' )


Also tick "Values on Data Points" for it, and that should show your expression value.

Not applicable
Author

Thanks a lot for the quick response!

It worked Perfectly!!