如何使用图表js在xAxes标签中引入换行符

How to introduce newline character in xAxes Label with chart js

我在使用图表 Js 在 xAxes 标签中插入换行符时遇到问题。

下面是用于格式化 xAxes 标签

的示例代码
"scales": {
    "xAxes": [{
        "type" : 'time',
        "display": true,

        time: {
            unit: 'millisecond',
            stepSize: 5,
            displayFormats: {
                millisecond: 'HH:mm - YYYY/MM/DD'
            }
        }
    }]
}

使用上面的代码,xAxes 标签看起来像 13:10 - 2022/02/01

但是,我想像下面这样:

对于多行标签,您需要为标签提供一个数组,其中每个条目都是它自己的行。这可以通过 tick 回调来实现:

function newDate(milis) {
  return moment().add(milis, 'ms');
}

var config = {
  type: 'line',
  data: {
    labels: [newDate(-4), newDate(-3), newDate(2), newDate(3), newDate(4), newDate(5), newDate(6)],
    datasets: [{
      label: "My First dataset",
      data: [1, 3, 4, 2, 1, 4, 2],
    }]
  },
  options: {
    scales: {
      xAxes: [{
        ticks: {
          callback: (tick) => (tick.split('-'))
        },
        type: 'time',
        time: {
          unit: 'millisecond',
          stepSize: 5,
          displayFormats: {
            millisecond: 'HH:mm - YYYY/MM/DD'
          }
        }
      }],
    },
  }
};

var ctx = document.getElementById("myChart").getContext("2d");
new Chart(ctx, config);
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.13.0/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.bundle.min.js"></script>
<canvas id="myChart"></canvas>