我的数据格式为d [Object,Object,....],其中每个对象的格式为{count:5 time:1352961975},其中time为Unix时间戳。我想根据时间与计数值进行对比。计数值在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格式的正确时间,然后相应地调用图形绘图。
答案 0 :(得分:2)
UNIX时间戳没有AM或PM的概念,您希望使用格式化程序来处理它。 d3提供了创建时间格式化程序的功能,您可以将其指定为完全按照您的需要显示(请参阅this documentation)。然后,您可以使用tickFormat
方法将该格式化程序传递给轴。
我认为格式化字符串%I:%M %p
会为您提供所需的格式。您可以使用以下内容来应用它:
d3.svg.axis().scale(y).orient("left").tickFormat(d3.time.format("%I:%M %p"))