Forum Discussion
Anonymous
6 years agoNot applicable
Scatter Chart Jitter
Hi, I was wondering if there was a way to create a scatter chart where the plots are "jittered", or not stacked on top of each other like the screenshot below... I saw some people using R but I a...
jhaines
5 years agoFrequent Visitor
I came across the same need as you. I added a calculated column using the RAND DAX function:
Jitter = RAND()
I then added that column as my y-axis (in your case you can add it to the x-axis) and got the jitter I was looking for.