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! Get ahead of the game and start preparing now! Learn more
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! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 36 | |
| 33 | |
| 29 | |
| 26 |
| User | Count |
|---|---|
| 135 | |
| 103 | |
| 65 | |
| 61 | |
| 55 |