[Chartjs]-Data point in Chart js line chart not positioned along y axis correctly when retrieve data from firestore

1👍

This is because you set your y axis to stacked so it puts all values on top of each other where the space between the lines is the value you provide.

To get the behaviour you want you need to remove the stacked or set it to false:

y: {
  stacked: false
}

Leave a comment