I've been using ResponsiveLine and noticed a peculiar issue. The Y axis range on the left does not coincide with the values on the values on the graph.

As you can see on the image the example also has the same issue. The value on Y is 104 but the scale is at a higher range. Anyone else had this issue?
This happens if you set yScale={{ stacked: true }}, which looks to be the case in the above image as none of the lines cross.
@wyze thanks for the reply. My bad. Since the stacking was set to true, the range on the Y Axis and the graph lines do not align. But i got it to work by setting it to false.
@wyze you know, if you wanted to make your code cleaner, it also works if you just take out stacked: true all together (no need to set it to false) :)
Most helpful comment
This happens if you set
yScale={{ stacked: true }}, which looks to be the case in the above image as none of the lines cross.