Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
I have a pie chart with 3 tags.
I want to click on any of these tags, colors and position don't be changed.
It happened because I use condition with IF.
Could you suggestion how to use the same expression, but use set analysis?
Or other tricks to get it?
Thanks,
See if attached is what you want. Used this formula for background expression:
pick(match(only({<VariableName=>}VariableName), 'A', 'B', 'C'), RGB(210,247,130), RGB(247,235,126), RGB(247,165,151))
Hope this helps!
EDIT: You'll need to change your sort expression also to:
match(only({<VariableName=>}VariableName),'A','B','C')
in color tab check persistent color or in expression tab background write the condition for color
I wrote the condition with IF, it didn't work.
I need also keep for each tag the same color.
See if attached is what you want. Used this formula for background expression:
pick(match(only({<VariableName=>}VariableName), 'A', 'B', 'C'), RGB(210,247,130), RGB(247,235,126), RGB(247,165,151))
Hope this helps!
EDIT: You'll need to change your sort expression also to:
match(only({<VariableName=>}VariableName),'A','B','C')
Thanks. I used the same expression for sort too.