Forum Discussion
Dynamically showing visual, but tool tips are not available because of layers.
I used this process to dynamically show a visual after a filter is selected.
https://exceleratorbi.com.au/show-or-hide-a-power-bi-visual-based-on-selection/
The issue I am having is that you can not hover over the lines now because of the transparent object,
Is there a way around this or a better way to force the filter on users?
datagrrl , if this is based only on showing visual after selection, not based on every value, you can use isfiltered or hasone value to remove content and change background color
Refer this from Guyinacube
https://www.youtube.com/watch?v=sXn-QZqLD-8- Anonymous9 months ago
Hi datagrrl ,
Use the DAX measure + visual-level filter technique.
Example:
Force User Selection =
IF (
HASONEVALUE('Calendar'[Date]) || HASONEVALUE('Category'[Category]),
1,
0
)
Then visual-level filter:
Keep only value = 1
Then create a separate card visual:
Please select a value from the slicer to view this chart. This gives a clean UX and full interactivity.
If my response as resolved your issue please mark it as solution and give kudos.
5 Replies
- AnonymousNot applicable
Hi datagrrl ,
Use the DAX measure + visual-level filter technique.
Example:
Force User Selection =
IF (
HASONEVALUE('Calendar'[Date]) || HASONEVALUE('Category'[Category]),
1,
0
)
Then visual-level filter:
Keep only value = 1
Then create a separate card visual:
Please select a value from the slicer to view this chart. This gives a clean UX and full interactivity.
If my response as resolved your issue please mark it as solution and give kudos.
- v-menakakota
Community Support
Hi datagrrl ,
Thanks for reaching out to the Microsoft fabric community forum.
I would also take a moment to thank Anonymous , for actively participating in the community forum and for the solutions you’ve been sharing in the community forum. Your contributions make a real difference.
I hope the above details help you fix the issue. If you still have any questions or need more help, feel free to reach out. We’re always here to support you .
Best Regards,
Community Support Team- v-menakakota
Community Support
Hi datagrrl ,
I hope the above details help you fix the issue. If you still have any questions or need more help, feel free to reach out. We’re always here to support you .
Best Regards,
Community Support Team
- amitchandak
Super User
datagrrl , if this is based only on showing visual after selection, not based on every value, you can use isfiltered or hasone value to remove content and change background color
Refer this from Guyinacube
https://www.youtube.com/watch?v=sXn-QZqLD-8 - Idrissshatila
Super User
Hello datagrrl ,
check this out to do it without adding an object on the visual.
https://youtu.be/XZVEc-ibn6E?si=wh5FSlHIXXDNFXw1