Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In each section of a Block Chart, is it possible to display both the value and the relative percentage at the same time? Or better yet, to display a custom expression?
Thanks
Hi Jeremy,
It's not possible in Block Chart. but there is work around you can show in Pie Chart. Please find the attachment.
Santhosh G
Hi.
Yes, for example you can use calculated dimension:
=aggr(Dimension & ' custom text' & count(Dimension), Dimension)
Hi Jeremy,
It's not possible in Block Chart. but there is work around you can show in Pie Chart. Please find the attachment.
Santhosh G
Thanks, Whiteline. This allows me to put custom text in the label. Expressions to not show up in the label, though. For example, I when I put:
aggr(Dimension& 'custom text ' & text(count(Dimension) / count(TOTAL Dimension)), Dimension) //trying to show it as a percent
I see:
'<member_of_dimension> custom text <(total_for_that_member)'>
Thank you Santhosh