var circles=svg.selectAll("circle").data(data).enter().append("circle").attr("id",function(d,i){return "circle"+i;}).attr("r",8).attr("fill","red").on("mouseover",function(d,i){ lines.style("stroke","#000"); }) .on("mouseout",function(d,i){ lines.style("stroke","#fff"); }) .call(force.drag);这个只是经过某一节点,把所有连线都显示的代码片段。
添加回答
举报
0/150
提交
取消