Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello Community,
Wondering if we can create a chart (with kind of design as in the picture). Not sure, if there is a visual that exists any ideas/possiblities are most welcome.
Thanks,
Anthony Joseph
Solved! Go to Solution.
Core visuals certainly dont support pattern fills, and there are a few custom ones that do. Visuals that adhere to the OBCS standard (such as ZebraBI have patern shading, but these are typically contextual for how patterns should be used in an IBCS scenario).
If you want a bit more control as the cost of having to do a bit more to set it up, Deneb provides support for a number of popular SVG patterns. Here's a quick mockup:
I've attached a sample workbook, but here's the Vega-Lite specification I used to produce:
{
"data": {"name": "dataset"},
"layer": [
{
"mark": {
"type": "bar",
"stroke": "black"
},
"encoding": {
"fill": {
"field": "Series",
"legend": {
"title": null,
"orient": "top",
"symbolType": "square",
"symbolStrokeWidth": 1,
"symbolSize": 200
},
"scale": {
"range": [
"url(#diagonal-stripe-1)",
"url(#circles-1)",
"url(#houndstooth)"
]
}
}
}
},
{
"mark": {
"type": "text",
"dy": -10
},
"encoding": {
"text": {"field": "Value"}
}
}
],
"encoding": {
"x": {
"field": "Category",
"axis": {"labelAngle": 0}
},
"xOffset": {"field": "Series"},
"y": {
"field": "Value",
"type": "quantitative"
}
}
}
Regards,
Daniel
Proud to be a Super User!
On how to ask a technical question, if you really want an answer (courtesy of SQLBI)
Core visuals certainly dont support pattern fills, and there are a few custom ones that do. Visuals that adhere to the OBCS standard (such as ZebraBI have patern shading, but these are typically contextual for how patterns should be used in an IBCS scenario).
If you want a bit more control as the cost of having to do a bit more to set it up, Deneb provides support for a number of popular SVG patterns. Here's a quick mockup:
I've attached a sample workbook, but here's the Vega-Lite specification I used to produce:
{
"data": {"name": "dataset"},
"layer": [
{
"mark": {
"type": "bar",
"stroke": "black"
},
"encoding": {
"fill": {
"field": "Series",
"legend": {
"title": null,
"orient": "top",
"symbolType": "square",
"symbolStrokeWidth": 1,
"symbolSize": 200
},
"scale": {
"range": [
"url(#diagonal-stripe-1)",
"url(#circles-1)",
"url(#houndstooth)"
]
}
}
}
},
{
"mark": {
"type": "text",
"dy": -10
},
"encoding": {
"text": {"field": "Value"}
}
}
],
"encoding": {
"x": {
"field": "Category",
"axis": {"labelAngle": 0}
},
"xOffset": {"field": "Series"},
"y": {
"field": "Value",
"type": "quantitative"
}
}
}
Regards,
Daniel
Proud to be a Super User!
On how to ask a technical question, if you really want an answer (courtesy of SQLBI)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
8 | |
4 | |
2 | |
2 |
User | Count |
---|---|
4 | |
3 | |
3 | |
3 | |
2 |