How to group the Y and X axis labels at the very bottom left corner in Chart.js?

I’m using Chart.js v4.4.3.

My goal is to group the Y and X axis label to achieve something like this:

chart-axes-design-goal

I wasn’t able to find what options to use to group this two axes labels together in https://www.chartjs.org/docs/latest/axes/labelling.html.

Would this be possible to achieve with the Chart.js options? Am I missing something?

This is what I have so far in my options, but it’s not quite what I’m trying to achieve.

{
  scales: {
    x: {
      title: {
        display: true,
        text: 'Day',
        align: 'start',
      },
    },
    y: {
      title: {
        display: true,
        text: 'Min',
        align: 'start',
      },
    },
  }
}

Any help would be greatly appreciated! Thank you!