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
Pretty easy fix here. On the column chart make these two adjustments:
$: columnHeight = d => { return Math.abs($yGet(d) - $yScale(0) ); };
and
y="{Math.min($yScale(0), $yGet(d))}"
Pretty similar for the bar chart component. Not sure if these need to be added to the stacked components? That seems like a weird chart type...
The text was updated successfully, but these errors were encountered:
After looking into this a bit, supporting all cases is a little tricky to handle in the component itself.
Sorry, something went wrong.
No branches or pull requests
Pretty easy fix here. On the column chart make these two adjustments:
and
Pretty similar for the bar chart component. Not sure if these need to be added to the stacked components? That seems like a weird chart type...
The text was updated successfully, but these errors were encountered: