Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Select a point within scatter plot without loosing other points

Hello,

 

Please I want to know if this situation is possible?

 

Here is the graph

When I select one sector the others disapear

What I want, if possible, when selecting a sector the point change colour or size without loosing the other sectors points.

 

Something like that:

 

Thanks

  • Hi Anonymous ,

     

    One sample for your reference. Please check the following steps as below.

     

    1. Create a calculated table.

    Client = VALUES('table'[Client ])

    2. New a measure and make the visual formatted by it.

     

    Measure = var _sele = VALUES(Client[Client ])
    return
    IF(MAX('table'[Client ]) in _sele,"#03ad00","#030200")

     

     

    Pbix as attached.

     

    Regards,

    Frank

3 Replies

  • v-frfei-msft's avatar
    v-frfei-msft
    Community Support

    Hi Anonymous ,

     

    One sample for your reference. Please check the following steps as below.

     

    1. Create a calculated table.

    Client = VALUES('table'[Client ])

    2. New a measure and make the visual formatted by it.

     

    Measure = var _sele = VALUES(Client[Client ])
    return
    IF(MAX('table'[Client ]) in _sele,"#03ad00","#030200")

     

     

    Pbix as attached.

     

    Regards,

    Frank

    • Anonymous's avatar
      Anonymous
      Not applicable
      Thanks a lot
    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi v-frfei-msft ! I tried your solution in my project and it was very useful. However, in my case, I have many overlapping points in the same graph. Do you know how can I send forward the point that I selected, so that it is not hidden by the other points in the cloud?