Chartjs-Chartjs bar chart position

1👍

Try to set the offset to false in the options:

const options = {
  scales: {
    x: {
      offset: false,
    },
  },
};

when offset is equal to true, there will be some space around the chart. If it is false, the space will be removed.

official document

Leave a comment