gpt4 book ai didi

javascript - d3 条形图标签在使用新数据更新图表时未更新

转载 作者:行者123 更新时间:2023-11-30 21:04:20 26 4
gpt4 key购买 nike

以下是每次单击下拉菜单中的按钮或选项时都会调用的代码,以便使用新数据更新我的 d3 条形图。

图表中的条形图已根据新数据正确更新,但条形图的标签并未被新标签替换,而是同时显示新旧标签。

请提出一些建议,以便旧标签不会显示在条形图上。

function updateGraph(data) {

// scale the range of the data
x.domain(data.map(function(d) { return d.Country; }));
y.domain([0, d3.max(data, function(d) { return d.Value; })]);

var bars = svg.selectAll(".bar").data(data);

bars.enter().append("rect").attr("class", "bar");

bars.transition().duration(200).attr("x", function(d) { return x(d.Country); })
.attr("width", x.rangeBand())
.attr("y", function(d) {return y(d.Value); })
.attr("height", function(d) { return height - y(d.Value); });

var texts = svg.selectAll(".text").data(data);

texts.enter().append("text").attr("class","label").attr("x", (function(d) { return x(d.Country) + x.rangeBand() / 2 ; } ))
.attr("y", function(d) { return y(d.Value) + 1; })
.attr("dy", ".75em")
.text(function(d) { return d.Value; });


texts.transition().duration(200).attr("x", (function(d) { return x(d.Country) + x.rangeBand() / 2 ; } ))
.attr("y", function(d) { return y(d.Value) + 1; })
.attr("dy", ".75em")
.text(function(d) { return d.Value; });

bars.exit().remove();

svg.selectAll(".axis").remove();

svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);

svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Value");

}

最佳答案

你没有给文本添加类

这将选择所有具有 text 类的 DOM

var texts = svg.selectAll(".text").data(data);



texts
.enter()
.append("text")
.attr("class","label text") <-- add text class here
.attr("x", (function(d) { return x(d.Country) + x.rangeBand() / 2 ; } ))
.attr("y", function(d) { return y(d.Value) + 1; })
.attr("dy", ".75em")
.text(function(d) { return d.Value; });

现在删除更新时的所有文本

bars.exit().remove();
texts.exit().remove(); <--- add this to remove exited text

关于javascript - d3 条形图标签在使用新数据更新图表时未更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46803113/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com