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
on_load()
function on_load() { const config = { editable: true, plugin: "Y Bar", columns: ["Profit"], "row-pivots": ["Order Date"], "column-pivots": ["Profit"], selectable: null, aggregates: null, filters: null, sort: null, plugin_config: {}, }; var el = document.getElementsByTagName("perspective-viewer")[0]; WORKER.table(this.response, { limit: 10 }).then((table) => { el.load(table); el.toggleConfig(); el.restore(config); }); }
all bar widths are calculated correctly, see image:
bar widths are not calculated correctly, see image:
The text was updated successfully, but these errors were encountered:
Fix bar chart rendering bug #1561
bd7b126
b07b2dd
Successfully merging a pull request may close this issue.
Stacked bar widths are calculated incorrectly when passed null values
Steps to Reproduce:
on_load()
in examples/blocks/src/editable/index.html with the following:Expected Result:
all bar widths are calculated correctly, see image:
Actual Result:
bar widths are not calculated correctly, see image:
The text was updated successfully, but these errors were encountered: