Forum Discussion
Anonymous
7 years agoNot applicable
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 po...
- 7 years ago
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
v-frfei-msft
7 years agoCommunity 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
6 years agoNot 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?