-
Notifications
You must be signed in to change notification settings - Fork 11.9k
New issue
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
overlapped values in Stacked bar(xAxes + yAxes) #7716
Comments
v2 uses index based stacking. v3 stack by value, so should work with chart.js@next |
it did the job, but it was a pain. In angular's scope it was complaining about:
btw I found an ugly workaround to make it work, changing the scope to global it's still an alpha so idk if u want to investigate |
I had to register manually all elements
isn't it a bit tricky? I had to inspect the dist file to find that btw THANK you! here a working example |
It is, but thats the only way we could make tree shaking work while still using strings for |
try this:
|
closing as resolved |
Expected Behavior
Every bar shoud start at y = 0 and all bars (one per day) shoud have data appended
<----data1-----><--------data2---------><-------data3------> (vertical in the example)
Current Behavior
in this case u can see that bars are not continuous
Possible Solution
I also tried to fill all dates with
y:0
and to changex
to js Date Object and ISOStringSteps to Reproduce
link to reproduce
stack blitz
Context
Environment
The text was updated successfully, but these errors were encountered: