-
Notifications
You must be signed in to change notification settings - Fork 38
Open
Description
Implementing example
https://vega.github.io/vega-lite/examples/bar_size_responsive.html
as
using VegaLite, VegaDatasets
dataset("cars") |>
@vlplot(
height=250,
width="container",
:bar,
x="Origin:n",
y="count()",
)
does not give the desired result.
It seems that the preset container of the result has 0 width.
From opening the VegaLite Editor and checking the code it seems that the proper code is generated.
Any ideas, whats wrong?