Hello, i have a chart that displays a count of users grouped by range of ages. The chart is displaying correctly, showing in the chart, one bar for each different age interval and displaying the count measure. Is it possible to show the percent_of_total when the users hovers each bar? Right now is only displaying the count value, but i’d like to add the % of total also without adding a new column.
For example, if total is 100, i’m showing 3 bars with the next values
“Age < 10” : 25 users
“Age 10-20”: 40 users
“Age > 30”: 35 users
i’d want to show something like this
“Age < 10” : 25 users (25% of total)
“Age 10-20”: 40 users (40% of total)
“Age > 30”: 35 users (35% of total)
Is it possible to do something like this?
Thanks