This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi all,
In my free time I'm trying to create a DevOps kanban view that I can send to clients that will allow them to view the progression of tasks as they move between different states, without giving them access to DevOps itself.
I recently discovered the Deneb custom visual and was hoping that this may be able to help me achieve what I'm looking for but I have no knowledge of the Vega-Lite language.
I've got the rectangles in place but how do I get my array of values from "repeat" to display at the top of each rectangle?
Code:
{
"data": {"name": "dataset"},
"repeat": {
"column": [
"New",
"Analysis",
"Refinement",
"Ready",
"Development",
"UAT",
"Closed"
]
},
"spec": {
"layer": [
{
"mark": {
"type": "rect",
"width": 100,
"height": 300
}
},
{
"mark": {
"type": "text",
"dy": -175
},
"encoding": {
"text": {
"field": {
"repeat": "column"
}
}
}
}
]
}
}
Solved! Go to Solution.
Hi @Seanan, based on what you're describing, I believe the layout composition you want is facet, not repeat.
Here is an example gist (note - I explicitly listed the values in the values array of the data object. You'll want to remove that in Deneb). Hope this helps!
If this is enough to get you going please consider liking this reply and choosing it as the solution. Otherwise, I'm happy to help further.
Hi @Seanan, based on what you're describing, I believe the layout composition you want is facet, not repeat.
Here is an example gist (note - I explicitly listed the values in the values array of the data object. You'll want to remove that in Deneb). Hope this helps!
If this is enough to get you going please consider liking this reply and choosing it as the solution. Otherwise, I'm happy to help further.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.