マウスオーバー時にノード テキストのみを表示しようとしています。ノードにマウスオーバーすると、svg 円の不透明度が変化しますが、最初のノードのテキストのみが表示されます。これは select 要素の使用方法によるものであることがわかりましたが、ホバリングしているノードの正しいテキストを取得する方法がわかりません。これが私が現在持っているものです。
node.append("svg:circle")
.attr("r", function(d) { return radius_scale(parseInt(d.size)); })
.attr("fill", function(d) { return d.fill; })
.attr("stroke", function(d) { return d.stroke; })
.on('mouseover', function(d){
d3.select(this).style({opacity:'0.8'})
d3.select("text").style({opacity:'1.0'});
})
.on('mouseout', function(d){
d3.select(this).style({opacity:'0.0',})
d3.select("text").style({opacity:'0.0'});
})
.call(force.drag);