gpt4 book ai didi

javascript - 使用 d3.js 在 x 轴上显示相对时间

转载 作者:行者123 更新时间:2023-11-29 16:19:27 24 4
gpt4 key购买 nike

我正在尝试使用 nvd3.js 显示随时间推移的评分(近乎实时;数据每 3 分钟更新一次)。现在数据似乎正确显示,除了 x 轴显示的纪元时间不太可读。如何让 x 轴显示“x 分钟前”而不是纪元时间?

这是我使用的代码:

nv.addGraph(function() {
var chart = nv.models.lineChart();

chart.xAxis
.axisLabel('Time')
.tickFormat(d3.format('r'));

chart.yAxis
.axisLabel('Rating')
.tickFormat(d3.format('.2f'));

d3.select('#chart svg')
.datum(data())
.transition().duration(500)
.call(chart);

nv.utils.windowResize(chart.update);

return chart;
});

function data() {
var data = [ { x: 1345457533, y: -0.0126262626263 },
{ x: 1345457409, y: 0.0224089635854 },
{ x: 1345457288, y: 0.0270935960591 },
{ x: 1345457168, y: -0.0378151260504 },
{ x: 1345457046, y: -0.115789473684 } ]

return [
{
values: data,
key: "Sample1",
color: "#232066"
}
];
}

最佳答案

为标签使用自定义格式功能,例如moment.js .类似的东西

function myFormat(d) {
return moment(d * 1000).fromNow();
}

关于javascript - 使用 d3.js 在 x 轴上显示相对时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12042222/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com