与nvd3.js的实时线图

时间:2013-03-11 02:45:03

标签: javascript d3.js real-time transition nvd3.js

我正在尝试使用nvd3.js创建一个实时图表,该图表会定期更新,并且会产生实时处理数据的印象。

现在我已经能够创建一个定期更新图形的函数,但我无法在“状态”之间进行平滑过渡,例如向左转换的行。

Here是我使用nvd3.js所做的,这里有趣的代码是:

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

现在,我已经能够使用d3.js生成我想要的东西,但我更愿意能够使用nvd3.js提供的所有工具。我希望使用nvd3生成Here

使用d3.js进行转换的有趣代码是:

function tick() {

    // update the domains
    now = new Date();
    x.domain([now - (n - 2) * duration, now - duration]);
    y.domain([0, d3.max(data)]);

    // push the accumulated count onto the back, and reset the count
    data.push(Math.random()*10);
    count = 0;

    // redraw the line
    svg.select(".line")
        .attr("d", line)
        .attr("transform", null);

    // slide the x-axis left
    axis.transition()
        .duration(duration)
        .ease("linear")
        .call(x.axis);

    // slide the line left
    path.transition()
        .duration(duration)
        .ease("linear")
        .attr("transform", "translate(" + x(now - (n - 1) * duration) + ")")
        .each("end", tick);

    // pop the old data point off the front
    data.shift();

}

1 个答案:

答案 0 :(得分:13)

你可能想看一下: D3 Real-Time streamgraph (Graph Data Visualization)

特别是答案的链接: http://bost.ocks.org/mike/path/

一般来说,我认为有两种方法可以解决垂直过渡问题:

  • 过采样在实际点之间有一些线性插值,点之间的间隔越小,垂直过渡看起来越“水平”(但缺点是你得到了很多“假”点,可能是根据图表的使用情况不可接受)
  • 通过在末尾添加来扩展图表,并在左侧翻译图表,确保在删除它之前不显示仍然可用的左侧部分(剪切它或做任何其他技巧),这是最好的,并且解决方案上面提到的那个