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 🙂
do you have any idea how can I change the size of the dots in my dot plot graph (see photo). For example I want that L is the bigest one, and UNDER ASSESSMENT the smallest one. S und M are between then. Do I need a new measure? Is there any DAX Commands?
Best regards
Solved! Go to Solution.
Hi,
The size is dictated by values in the "size" area:
I recommend creating a new measure that has conditions so that the sizes correspont the ones you want.
E.g. with SWITCH. Something like this:
var _class = max(table[class]) return
SWITCH(TRUE(),
_class = "L",4,
_class = "M",3,
_class = "S",2,
_class "UNDER ASSESMENT",1)
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/
Proud to be a Super User!
Hi,
The size is dictated by values in the "size" area:
I recommend creating a new measure that has conditions so that the sizes correspont the ones you want.
E.g. with SWITCH. Something like this:
var _class = max(table[class]) return
SWITCH(TRUE(),
_class = "L",4,
_class = "M",3,
_class = "S",2,
_class "UNDER ASSESMENT",1)
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/
Proud to be a Super User!
It works! Thank you very much!
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!
| User | Count |
|---|---|
| 9 | |
| 9 | |
| 8 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 23 | |
| 18 | |
| 16 | |
| 15 | |
| 14 |