我一直在使用 d3 创建一个带有焦点和上下文刷的多线图表。一切都很顺利,除了在过渡时,带有工具提示的数据点处的点移动到完全错误的位置。我无法弄清楚是什么原因造成的。任何帮助将非常感激。我在这里附上了完整的代码,并在图表上注明了我很确定错误应该是:
http://jsbin.com/osumaq/20/edit
单击按钮时,会将新的 json 传递给图形以进行读取。
我认为的错误代码块是这样的:
topicEnter.append("g").selectAll(".dot")
.data(function (d) { return d.values }).enter().append("circle").attr("clip-path", "url(#clip)")
.attr("stroke", function (d) {
return color(this.parentNode.__data__.name)
})
.attr("cx", function (d) {
return x(d.date);
})
.attr("cy", function (d) {
return y(d.probability);
})
.attr("r", 5)
.attr("fill", "white").attr("fill-opacity", .5)
.attr("stroke-width", 2).on("mouseover", function (d) {
div.transition().duration(100).style("opacity", .9);
div.html(this.parentNode.__data__.name + "<br/>" + d.probability).style("left", (d3.event.pageX) + "px").style("top", (d3.event.pageY - 28) + "px").attr('r', 8);
d3.select(this).attr('r', 8)
}).on("mouseout", function (d) {
div.transition().duration(100).style("opacity", 0)
d3.select(this).attr('r', 5);
});
非常感谢。