我有这段代码可以将圆圈附加到折线图上的点上。
svg.selectAll("dot")
.data(newdata)
.enter()
.append("circle")
.attr("class", "dot")
.attr("r", 4)
.attr("cx", function(d) { return x(newdate(d.key)); })
.attr("cy", function(d) { return y(d.values.mean); })
.attr("fill", "#8cc13f")
.on("mouseover", function(d) {
div.transition()
.duration(200)
.style("opacity", .9);
div.html("Date taken:" + " " + newdate(d.key) + "<br/>" + "<br/>" +
"Average Reading:" + " " + d.values.mean + "<br/>" + "<br/>" +
"Parameter:" + " " + selectedParameter)
.style("left", (d3.event.pageX) + "px")
.style("top", (d3.event.pageY - 28) + "px");
})
.on("mouseout", function(d) {
div.transition()
.duration(500)
.style("opacity", 0);
});
..并在我使用以下内容更新图表时尝试转换这些圆圈:
var circle = svg.selectAll("dot")
.data(newdata);
circle
.enter()
.append("circle")
.data(newdata)
.transition()
.duration(750)
.attr("cx", function(d) { return x(newdate(d.key)); })
.attr("cy", function(d) { return y(d.values.mean); })
.attr("r", 4)
.attr("fill", "#8cc13f");
circle
.exit()
.transition()
.duration(750)
.attr('opacity',0)
.remove();
随着新圈子的加入,加入正在发挥作用——但由于某种原因,旧圈子没有被删除?任何人都可以帮忙吗?