Chartjs-Horizontal time stacked bar graph

0👍

So to answer my own question, i needed to turn off stacking for the x axis

      x: {
        parsing: false,
        stacked: false,
        position: 'top',
        type: 'time',
        time: {
          unit: 'hour',
        },
        min: "07:00",
        max: "19:00",
      },

Leave a comment