0
ここにはproblemがあります。ズーム可能な散布図でD3ラベルが表示されます
Uncaught TypeError: Cannot read property 'x' of undefined
最後の行に対応しています。あなたはドラッグするか、ズームインすると、ラベルが
エラーが動いていません。
function zoom() {
svg.select(".x.axis").call(xAxis);
svg.select(".y.axis").call(yAxis);
svg.selectAll(".dot")
.attr("transform", transform);
svg.selectAll("text")
.attr("transform", transform);
}
function transform(d) {
return "translate(" + x(d.x) + "," + y(d.y) + ")";
}