[Chartjs]-How to create a gantt chart using Chart.js and populate dates?

0👍

You are passing the values as strings. Try to pass as dates:

datasets: [{
      label: 'Demo',
      data: [{
          t: new Date("2015-3-15 13:3"),
          y: 12
        },

Leave a comment