Chartjs-How to make multiple stacked charts to share the same yAxis?

1👍

The problem is with this line in the y-axis:

stacked: true,

If you’ll remove it, it won’t stack the values together.
However, since you specified backgroundColor on your datasets, and the first dataset is “Amount of Sales – YTD” which has higher values, it will block the visual of your second dataset.

Leave a comment