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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Iโm using a Deneb visual to display the number of tickets across different venues as a bar chart. The number of venues varies depending on the filter selection.
Currently, Iโm using "width": { "step": 70 } so that the chart adjusts dynamically with the number of venues. This works fine when there are many venues, since the chart shows a horizontal scrollbar as expected.
However, when only a small number of venues are selected (for example, just 1 or 2), the chart becomes very narrow and leaves a large amount of white space on the right-hand side.
Is there a way to set a minimum width for the visual (or another approach) so that it doesnโt shrink too much when only a few categories are selected?
@Abhijith19 Hi!
"width": "container"
This tells the chart to always fill the width of the Deneb visual.
"width": { "signal": "max(availableWidth, 70 * domain('x').length)" }
domain('x').length โ number of categories in your x-axis.
70 * โฆ โ your step-based width.
max(availableWidth, โฆ) โ enforces a minimum.
In Deneb, availableWidth corresponds to the actual visual size.
BBF