Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Dot plot graph

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

Screenshot 2022-08-24 091835.png

1 ACCEPTED SOLUTION
ValtteriN
Super User
Super User

Hi,

The size is dictated by values in the "size" area:

ValtteriN_0-1661329489810.png


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/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
ValtteriN
Super User
Super User

Hi,

The size is dictated by values in the "size" area:

ValtteriN_0-1661329489810.png


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/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Anonymous
Not applicable

It works! Thank you very much! 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.