chart.js工具提示中的更改日期格式

问题描述 投票:0回答:1

我正在使用chart.js生成图表。一切正常!

enter image description here

但是如何格式化工具提示信息?应该是:28.04.2020-05:00

chart.js
1个回答
0
投票

您需要为time.tooltipFormat定义xAxis

请参阅Moment.js以获取允许的格式标记。

options: {
    ...
    scales: {
        xAxes: [{
            type: 'time',
            time: {
                unit: 'hour',
                tooltipFormat: 'DD.MM.YYYY - HH:mm' 
            }
            ...
        }]
    }
    ... 
}
© www.soinside.com 2019 - 2024. All rights reserved.