答案 0 :(得分:1)
您可以使用格式功能来自定义x轴标签。例如,
options: {
showMinorLabels: false,
timeAxis: { scale: 'day', step: 1 },
format: {
majorLabels: function (date, scale, step) {
// return a custom label or "" depending on the date
}
}
}