定期的に更新されるnvd3.jsを使用して、データがリアルタイムで処理されているように見えるリアルタイムグラフを作成しようとしています。
今のところ、グラフを定期的に更新する関数を作成することはできましたが、線が左に遷移するような「状態」間のスムーズな遷移を管理することはできません。
これが私がnvd3.jsを使ってしたことです、ここで興味深いコードは次のとおりです:
d3.select('#chart svg')
.datum(data)
.transition().duration(duration)
.call(chart);
これで、d3.jsを使用して必要なものを作成できましたが、nvd3.jsが提供するすべてのツールを使用できるようにしたいと思います。これが私がnvd3を使って作りたいものです
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();
}