我正在使用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',**
}
},
如何控制工具提示和轴刻度标签格式。
答案 0 :(得分:5)
如果您尝试格式化数据tbat出现在点悬停工具提示中,那么在使用时间刻度时,您可以使用tooltipFormat
属性设置用于工具提示的时刻js格式字符串。< / p>
scales: {
xAxes: [{
type: 'time',
position: 'bottom',
time: {
tooltipFormat: "MM-DD-YYYY",
},
}],
}
但是,如果您尝试设置x轴刻度标签的格式,使其仅显示日期的日期部分,则可以使用unit
属性。
scales: {
xAxes: [{
type: 'time',
position: 'bottom',
time: {
unit: "day",
},
}],
}
上面的示例使用为day
定义的默认显示格式,即{l}&#39; (例如,1986年9月4日)。如果您想将此格式更改为其他格式(例如09/04/1986),则可以重新定义day
这样的显示格式。
scales: {
xAxes: [{
type: 'time',
position: 'bottom',
time: {
unit: "day",
displayFormats: {
day: "l",
},
},
}],
}