Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.