The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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!
User | Count |
---|---|
15 | |
8 | |
6 | |
6 | |
5 |
User | Count |
---|---|
25 | |
13 | |
12 | |
8 | |
8 |