I’m using facets in Vega, but have one graph with no data, how to remove it from viz?
Not fixed that issue @amidsi but have found a fix to the jumping.
Adding the .bounds('flush')
fixed the jumping.
Also made the width look nicer by defining it as a just under a 1/3 of the width.
.width(width*0.3)
// add white stroked text to provide a legible background for labels
base.markText(label, white).encode(vl.text().fieldN('aspect_desc')),
base.markText(label).encode(vl.text().fieldN('aspect_desc'))
)
.width(width*0.3)
.height(120)
.facet(vl.facet()
.sort('ascending')
.fieldN('performance_id').title(null)
)
.columns(3)
.bounds('flush')
.data(bv2)
.render();
}
This might help fix the blank
1 Like
Hey hellonearthis!
Thank you veery much for noticing it, coz I had this question here too:
Pls, add your solution there too for me to close that issue with Solution button!
I believe this is happening because your facet columns rows share the x axis.
I can’t offer a solution, but you may find some inspiration in COVID-19 Curves (U.S.) / Nick Bosman / Observable.
1 Like