{
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"data": {"url": "https://vega.github.io/vega-lite/data/barley.json"},
"width": 300,
"height":300,
"mark": "bar",
"encoding": {
"column": {"field": "year"},
"x": {"field": "yield", "type": "quantitative", "aggregate": "sum"},
"y": {"field": "variety", "type": "nominal"},
"color": {"field": "site", "type": "nominal"}
}
}
Output :
Other visualizations without column are getting resized as per dimensions of visualization in dashboard (the whole visualization gets occupied). But whenever column is included its not getting resized in dashboard. Is there any way to solve this ?