Anything on the product roadmap to include more de...
# gd-beginners
j
Anything on the product roadmap to include more detailed tooltip options? When I hover over a visual I would like the option of providing more contextual data (e.g. if I show a visual with a % rate I might like to also show raw numbers when hovering over so the user knows the sample sizes). Is this possible and I’m missing it?
j
Hi Jamie, it is not on our short term roadmap to my knowledge. In case you want to display percentage as well as total number in tooltip maybe you can use a following workaround”
Copy code
select round({metric/metric1}/(select {metric/metric1} by all other)*100)+ {metric/metric1}/1000000
It calculates percentage as integer part and raw number as in decimal digits (as millionths). For example
50.000123
Metric format:
Copy code
#,##0\% ({{{.000001|1000000|#,##0}}})
will display such number as
50% (123)
p
🎉 New note created.
j
ok thanks for logging it