[Chartjs]-Why Chart.JS showing an extra line

2👍

The behaviour of the line is because the points are not in the correct order in the data array, so it will jump back in the chart.

To fix this you will have to sort your data array first so that it’s in the correct order.

Leave a comment