我正在尝试使用 D3.js 画一条线。它们是在一段时间内间隔采集的样本。我想用 x 的时间轴来绘制它们。每个数据点只是数组中的一个索引,我不知道如何设置我的轴,这样我就不必在调用 d3.time.scale 之前手动重新缩放轴。
有谁知道如何清理秤?
从我的代码中摘录。我的实际代码会下载数据并在不同的时间段内绘制很多线,并在图中转换不同的偏移量。
// input data
var start_time = 1352684763;
var end_time = 1352771163;
// data is exactly 100 samples taken between start_time and end_time
var data = [140,141,140,140,139,140,140,140,140,141,139,140,54,0,0,0,0,0,0,0,0,0...]
var y_max = d3.max(data);
// graph
var scale_x = d3.time.scale().domain([start_time, end_time]).range([0, 100]);
var scale_y = d3.scale.linear().domain([0, y_max]).range([height, 0]);
var step = (end_time - start_time)/100;
function re_scale(x) { return start_time + x*step; }
// for x, rescale i (0..99) into a timestamp between start_time and end_time before returning it and letting scale_x scale it to a local position. Awkward.
var line = d3.svg.line()
.x(function(d, i) { return scale_x(re_scale(i)); })
.y(scale_y)
.interpolate('basis')
var g = graph.selectAll("g")
.append('svg:path')
.attr('d', function(d) { return line(data); })
// also draw axis here...