Power BI supports both default and custom tooltips to display more information when hovering over data points.
-> Create a Tooltip Page:
– Add a new page in your report.
– Set the page size to Tooltip in the “Page Size” options under the Format pane.
– Toggle Tooltip to “On” under Page Information.
– Design the tooltip page by adding visuals (charts, tables, text boxes) that you want to display when hovering.
-> Link Tooltip Page to Visual:
– Select your main visual.
– Go to Format → Tooltip, change “Type” to Report Page, and select the custom tooltip page you created.
– When hovering over the visual, this custom page will appear as a tooltip.
-> Dynamic Tooltips Using Measures:
– If you want dynamic tooltips based on calculations, create a measure like this:
TooltipText = IF([Sales] > 5000, "High Sales", "Low Sales")
Using custom tooltips allows for much richer interaction and more context to be displayed when hovering over data points in Power BI visuals.