score:2

chartjs graph convert the dates using localdatetime, i found this workaround which requires you to change the code of chartjs graph - github.com/chartjs/chart.js/issues/4334#issuecomment-386325799

or you could use a callback to generate the x-axis tick

ticks: {
  callback: (label, index, values) => {
      return moment.utc(label);
    }
}

Related Query

More Query from same tag