Search code examples
amchartsamcharts4

Line chart not plotting in sequence


I am trying to implement Line chart, from API I am getting response in sequence but on Line Chart its not plotting in sequence.

Here is JSFiddle


Solution

  • Your data isn't sorted in timestamp ascending order as documented here. Sorting your data will fix the problem.

    chart.data = data.sort((lhs,rhs) => {
     return (new Date(rhs.endDate)) - (new Date(lhs.endDate));
    });