Changing Label names

Hi Team,

I have stacked bar chart and showing labels like below screen shot

but my end user requirement is, he wants to see like

  • Promoter → Promoter (9-10)

  • Passive → Passive (7-8)

  • Detractor → Detractor (0-6)

Is it possible to change label names instead of writing calculation and use that calculation in VIZ

please help me to change labels

Thanks & Regards

Chaitanyakumar N

Hi @Cnagabhairava,
There’s currently no direct way to just change the labeling used for legends; but this can be adjusted with a simpleswitch calculation that may look something like:

switch({field_name},
’Promoter’, ‘Promoter (9-10)’,
’Passive’, ‘Passive (7-8)’,
’Detractor’, ‘Detractor (0-6)’,
’Other’)

Thank you for Answer Brett

1 Like