我的数据格式为 d [ Object, Object,.... ],其中每个对象的格式为 {count:5 time:1352961975 },其中 time 是 Unix Timestamp。我想根据时间和计数值来绘制它。计数值绘制在 y 轴上,时间将绘制在 x 轴上,分别为 12:30 AM、1 AM、1:30 AM ...。到当前时间。
像这样
var midnight_time = new Date();
midnight_time.setHours(0,0,0,0);
x = d3.time.scale()
.range([0,width])
.domain([ new Date(midnight_time),new Date()]);
y = d3.scale.linear()
.domain([0,ymax]) //by using ajax not shown here getting the value of ymax
.range([height, 0]);
line = d3.svg.line()
.x(function(d) { return x(d.count); })
.y(function(d) { return y(d.time); });
svg = d3.select("#viz").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
svg.append("defs").append("clipPath")
.attr("id", "clip")
.append("rect")
.attr("width", width)
.attr("height", height);
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(d3.svg.axis().scale(x).orient("bottom")
.ticks(d3.time.minutes,tick_count));
svg.append("g")
.attr("class", "y axis")
.call(d3.svg.axis().scale(y).orient("left"));
d3.select(".x.axis")
.append("text")
.text("the time span")
.attr("transform", "translate(360,30)");
d3.select(".y.axis")
.append("text")
.text("Maximum number of active users")
.attr("transform", "rotate (-90, -35, 0) translate(-210)");
path = svg.append("g")
.attr("clip-path", "url(#clip)")
.append("path")
.data([data])
.attr("class", "line")
.attr("d", line);
我想我没有正确应用时间格式。我需要将 Unix 时间戳转换为 AM 或 PM 格式的正确时间,然后相应地调用图形绘图。