我正在尝试创建一个运行折线图,其中动画变化以及 X 和 Y 轴以及线本身。
我从基本动画解释开始: https ://observablehq.com/@d3/learn-d3-animation?collection=@d3/learn-d3
并创建了我自己的(见下面的代码和链接)
我的问题是,一旦我添加await chartBug.update
Y 轴就开始闪烁。请参阅下面的动画 gif:
我想我需要await,等待动画完成后再开始下一个动画,并控制动画的流畅速度。
当我在这里时,我还想问一下如何强制轴绘制开始和结束刻度。
谢谢您的帮助
chartBug = {
const svg = d3.create("svg").attr("viewBox", [0, 0, width, height]);
const zx = x.copy(); // x, but with a new domain.
const zy = y.copy(); // x, but with a new domain.
const line = d3
.line()
.x(d => zx(d.date))
.y(d => y(d.close));
const path = svg
.append("path")
.attr("fill", "none")
.attr("stroke", "steelblue")
.attr("stroke-width", 1.5)
.attr("stroke-miterlimit", 1)
.attr("d", line(data));
const gx = svg.append("g").call(xAxis, zx);
const gy = svg.append("g").call(yAxis, y);
return Object.assign(svg.node(), {
update(step) {
const partialData = [];
for (let i = 0; i < step; i++) {
partialData.push(data[i]);
}
const t = svg.transition().duration(50);
zx.domain(d3.extent(partialData, d => d.date));
gx.transition(t).call(xAxis, zx);
zy.domain([0, d3.max(partialData, d => d.close)]);
gy.transition(t).call(yAxis, zy);
path.transition(t).attr("d", line(data));
return t.end();
}
});
}
{
replay2;
for (let i = 0, n = data.length; i < n; ++i) {
await chartBug.update(i);
yield i;
}
}