Forum Discussion
cristianml
Post Prodigy
3 years agoTooltip Switch Category
Hi,
I need to show a Tooltip and to Switch Category that allow me see the Legend based on that. I used a Parameter field but not working when I hover over these two Categories.
Tootip Legend:
Parameter:
Market works:
Tooltip not showing Market Unit level (Midwest) based on parameter.
Any idea ?
5 Replies
- Greg_Deckler
Community Champion
cristianml Did you put your Parameter into the Tooltip page's Tooltip Keep all filters field well?
- cristianml
Post Prodigy
- Greg_Deckler
Community Champion
- jgeddes
Super User
If the parameter ends up not working for you a workaround may be to write a measure that basically checks which level is being hovered over and then displays the value. You can use that measure as a formatted title of the tooltip instead of using the legend.
EG.Tooltip Title =var _scope =HASONEVALUE(marketTable[Unit Level])ReturnIF(_scope,"Values from " & SELECTEDVALUE(marketTable[Unit Level]),"Values from " & SELECTEDVALUE(marketTable[Market]))