作者:禁灭19 | 来源:互联网 | 2023-02-09 08:54
我正在使用chart.js,我想为我的数据设置自定义日期格式.我怎样才能做到这一点?
例如,这是我的x轴日期配置:
scales: {
xAxes: [{
type: 'time',
position: 'bottom',
time: {
displayFormats: {
**'day': 'Y M D',
'week': 'Y M D',
'month': 'Y M D',
'year': 'Y M D',**
}
},
如何控制工具提示和轴刻度标签格式.
1> jordanwillis..:
如果您尝试格式化数据tbat出现在点悬停工具提示中,那么在使用时间刻度时,您可以使用该tooltipFormat
属性设置用于工具提示的时刻js格式字符串.
scales: {
xAxes: [{
type: 'time',
position: 'bottom',
time: {
tooltipFormat: "MM-DD-YYYY",
},
}],
}
但是,如果您尝试设置x轴刻度标签的格式,使其仅显示日期的日期部分,则可以使用该unit
属性.
scales: {
xAxes: [{
type: 'time',
position: 'bottom',
time: {
unit: "day",
},
}],
}
上面的示例使用为其定义的默认显示格式day
'll'(例如,1986年9月4日).如果要将此格式更改为其他格式(例如09/04/1986),则可以重新定义day
此类显示格式.
scales: {
xAxes: [{
type: 'time',
position: 'bottom',
time: {
unit: "day",
displayFormats: {
day: "l",
},
},
}],
}