由于某种原因,我使用的时间戳未正确转换为图表。图表说它们是01/16/1970 [时间戳:1389429242]。我正在使用strtotime(php函数)来生成时间戳。如何使用php生成正确的时间戳?
代码:
<script>
nv.addGraph(function() {
var chart = nv.models.lineWithFocusChart();
chart.xAxis
.tickFormat(function(d) { return d3.time.format('%x')(new Date(d)) });
chart.x2Axis
.tickFormat(function(d) { return d3.time.format('%x')(new Date(d)) });
chart.yAxis
.tickFormat(d3.format(',f'));
chart.y2Axis
.tickFormat(d3.format(',f'));
d3.select('#chart svg')
.datum(
[
{
key : 'Current' ,
color : '#2ca02c',
values : [
{ x: 1389429242 , y:15 },
...
]
},
{
key : 'Backlog' ,
color : '#ff7f0e',
values : [
{ x: 1389429242 , y:50 },
...
]
}
]
)
.call(chart);
nv.utils.windowResize(chart.update);
return chart;
});
</script>
答案 0 :(得分:1)
显然,JS时间戳以毫秒为单位。所以我不得不将我的PHP时间戳乘以我的1000并且它可以工作。
解决