您需要为time.tooltipFormat
定义xAxis
。
请参阅Moment.js以获取允许的格式标记。
options: {
...
scales: {
xAxes: [{
type: 'time',
time: {
unit: 'hour',
tooltipFormat: 'DD.MM.YYYY - HH:mm'
}
...
}]
}
...
}