We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In
{ "$schema": "https://vega.github.io/schema/vega-lite/v5.json", "data": {"url": "data/movies.json"}, "repeat": {"column": ["US Gross", "Worldwide Gross"]}, "spec": { "encoding": { "x": {"bin": true, "field": "IMDB Rating", "type": "quantitative"}, "y": { "aggregate": "mean", "field": {"repeat": "column"}, "type": "quantitative", "title": "Mean of US and Worldwide Gross" }, "color": {"datum": {"repeat": "column"}, "type": "nominal"} }, "layer": [ {"name": "foo", "mark": "line"}, {"name": "bar", "mark": "point"} ] } }
the {"repeat": "column"} is not replaced in the normalized spec.
{"repeat": "column"}
The text was updated successfully, but these errors were encountered:
I think this issue is solved in examples/specs/normalized/repeat_layer_normalized.vl.json
Sorry, something went wrong.
It's not fixed in the Vega-Lite compiler, right? Open the Chart in the Vega Editor
Successfully merging a pull request may close this issue.
In
the
{"repeat": "column"}
is not replaced in the normalized spec.The text was updated successfully, but these errors were encountered: