Forum Discussion
Jhadur
2 years agoHelper I
How to Change Legend Labels
I have created this visualization based on information in an imported excel data files. I would like the legend labels to display as Green Amber and Red instead of 10, 20, 30. How can I do that? I fe...
- 2 years ago
Hi Jhadur - you can display the legend with colors by creating a calculated column as below:
StatusLabel = SWITCH([Overall status],10, "Green",20, "Amber",30, "Red","Unknown")use the status label in legend , it should display the colors instead of numbers.Hope it works , please check
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
rajendraongole1
2 years agoSuper User
Hi Jhadur - you can display the legend with colors by creating a calculated column as below:
StatusLabel = SWITCH(
[Overall status],
10, "Green",
20, "Amber",
30, "Red",
"Unknown"
)
use the status label in legend , it should display the colors instead of numbers.
Hope it works , please check
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!