Forum Discussion
Customise Tooltip for Decomposition Tree
- 1 year ago
Hi jdavison,
Unfortunately, Power BI does not currently support customizing tooltips to appear only when hovering over the last field in the Explain By bucket of the Decomposition Tree. Tooltips in Power BI apply to the entire visual and cannot be conditionally triggered based on specific hierarchy levels within the Decomposition Tree.
If the feature is important for you, please create a post in
Fabric Ideas - Microsoft Fabric Community
The product team actively monitors the forum for valuable suggestions, and if a feature request gains enough support through community votes, they will consider implementing it in future updates.
If you find this post helpful, please mark it as an "Accept as Solution" and consider giving a KUDOS. Feel free to reach out if you need further assistance.
Thanks and Regards
Hi jdavison
I've run into the same issue when trying to fine-tune the user experience in the Decomposition Tree.
At the moment, there's no built-in way to conditionally show a tooltip only when you hover over the last-level field in the hierarchy. The tooltip shows up on any node, regardless of depth, which can clutter things when you're trying to highlight specific insights at the leaf level.
One workaround I’ve used is to create a tooltip page and include a custom DAX filter that checks if the current node is the lowest level.
Show Tooltip =
IF(
ISINSCOPE('Table'[LowestLevelField]),
1,
0
)
Then apply this as a visual-level filter on the tooltip page.