Chartjs-Chart.js multiple datasets on one y axis

1👍

To make it work as expected, remove the option scales.y.stacked or set it to false.

For further information, please consult the chapter Stacking from the Chart.js documentation.

UPDATE

stacked: true is defined twice on your y-axis. Remove both of them, and it should work.

Leave a comment