Forum Discussion

datagrrl's avatar
datagrrl
Icon for Advocate I rankAdvocate I
9 months ago
Solved

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?

  • Anonymous's avatar
    Anonymous
    9 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

  • Anonymous's avatar
    Anonymous
    Not 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's avatar
      v-menakakota
      Icon for Community Support rankCommunity 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's avatar
        v-menakakota
        Icon for Community Support rankCommunity 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