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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi,
I have a boxplot created using visual "Box and Whisker by MAQ Software".
Is it possible to add jittering to the boxplot? When I create a measure
Here's an example of one way to do it, with the Deneb visual.
{
"data": {"name": "dataset"},
"facet": {
"column": {"field": "Subcategory"}
},
"spec": {
"transform": [
{
"calculate": "random()-0.5",
"as": "jitter"
}
],
"layer": [
{
"mark": "point",
"encoding": {
"x": {
"field": "jitter",
"type": "quantitative",
"scale": {
"domain": [-10, 10]
},
"axis": null
},
"y": {
"field": "Total Qty",
"type": "quantitative"
}
}
},
{
"mark": {
"type": "boxplot",
"extent": "min-max"
},
"encoding": {
"y": {
"field": "Total Qty",
"type": "quantitative"
}
}
}
]
}
}
Pat
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 48 | |
| 35 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 134 | |
| 110 | |
| 59 | |
| 39 | |
| 32 |