Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I have a scatter with lots of data points (many of which are overlapping). I am setting Fill Point Off, and using the following measure to highlight the selected data point to RED in order to see through the overlapped data.
Solved! Go to Solution.
Hi @ccjj
If you use RGBA color values you can set the A (Alpha or opacity) to make data points transparent or opaque.
Something like this, which makes the red point opaque and all other points partially transparent.
CF = IF( MIN('Table'[Y]) = 2.6, "RGBA(255,0,0,1)" , "RGBA(0,255,0,0.2)")
Regards
Phil
Proud to be a Super User!
Hi @ccjj
If you use RGBA color values you can set the A (Alpha or opacity) to make data points transparent or opaque.
Something like this, which makes the red point opaque and all other points partially transparent.
CF = IF( MIN('Table'[Y]) = 2.6, "RGBA(255,0,0,1)" , "RGBA(0,255,0,0.2)")
Regards
Phil
Proud to be a Super User!
Thank you @PhilipTreacy !
After playing around with the Alpha channel, that worked GREAT!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!