We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
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
{ "$schema": "https://vega.github.io/schema/vega-lite/v5.json", "description": "A simple bar chart with embedded data.", "data": { "values": [ {"b": 0}, {"b": 10}, {"b": 10}, {"b": 10}, {"b": 10}, {"b": 20} ] }, "mark": {"type": "bar", "orient": "horizontal"}, "encoding": { "y": {"field": "b", "type": "quantitative"} } }
The max value in the data is 20
But the domain is the sum of values, due to incorrect stacking logic.
The text was updated successfully, but these errors were encountered:
fix: make 1D bar respect orientation for stack calculation (#9167)
0007da5
fix(#9167): make 1D bars respect orient for stack calculation (#9168)
432f354
* docs(example): bar_1d_dimension only * chore: update examples [CI] * fix: make 1D bar respect orientation for stack calculation (#9167) * chore: update examples [CI] --------- Co-authored-by: GitHub Actions Bot <vega-actions-bot@users.noreply.github.com>
Successfully merging a pull request may close this issue.
The max value in the data is 20
But the domain is the sum of values, due to incorrect stacking logic.
The text was updated successfully, but these errors were encountered: