编程语言
首页 > 编程语言> > javascript – 如何在D3强制布局中鼠标悬停节点时显示文本

javascript – 如何在D3强制布局中鼠标悬停节点时显示文本

作者:互联网

当我将鼠标移动到D3.js中的Force-Directed Graph中的节点上时,我试图显示文本.我的问题是,当我将鼠标移动到任何节点上时,会显示这些节点的所有文本.这是我的代码:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>

.node {
stroke: #fff;
stroke-width: 1.5px;
}

.nodeDetail {
stroke: #fff;
stroke-width: 1.5px;
}

.link {
stroke: #999;
stroke-opacity: .6;
}

node .text {
font: 12px sans-serif;
pointer-events: none;
}

</style>
</head>
<body>
<script src="http://d3js.org/d3.v3.js"></script>
<script src="d3/d3.v3.min.js charset=UTF-8"></script>
<script>
var graph = {
"nodes":[
{"name":"Myriel","group":1},
{"name":"Napoleon","group":1},
{"name":"Mlle.Baptistine","group":1},
{"name":"Mme.Magloire","group":1},
{"name":"CountessdeLo","group":1}
],
"links":[
{"source":1,"target":0,"value":1},
{"source":2,"target":0,"value":8},
{"source":3,"target":0,"value":10},
{"source":3,"target":2,"value":6},
{"source":4,"target":0,"value":1}
]
};
var width = 960,
height = 500;

var color = d3.scale.category20();

var force = d3.layout.force()
.charge(-120)
.linkDistance(30)
.size([width, height]);

var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);

var drawGraph = function(graph) {
force
  .nodes(graph.nodes)
  .links(graph.links)
  .start();

var link = svg.selectAll(".link")
  .data(graph.links)
  .enter().append("line")
  .attr("class", "link")
  .style("stroke-width", function(d) { return Math.sqrt(d.value); });

var gnodes = svg.selectAll('g.gnode')//('g.gnode')
 .data(graph.nodes)
 .enter()
 .append('g')
 .classed('gnode', true);

var node = gnodes.append("circle")
  .attr("class", "node")
  .attr("r", 5)
  .style("fill", function(d) { return color(d.group); })
  .on("mouseover", function(d)
 {
    d3.select(this).transition()
    .duration(750)
    .attr("r", 15);
    return labels.style("visibility", "visible");
 })
.on("mouseout", function()
 {
 d3.select(this).transition()
.duration(750)
.attr("r", 5);
 return labels.style("visibility", "hidden");//})
 })
 .call(force.drag);

 var labels = gnodes.append("text")
  .text(function(d) { return d.name; })
  .style("visibility", "hidden");

 /*gnodes.append("text")
 .text(function(d) { return d.name; })
 .style("visibility", "hidden");*/

 force.on("tick", function() {
 link.attr("x1", function(d) { return d.source.x; })
    .attr("y1", function(d) { return d.source.y; })
    .attr("x2", function(d) { return d.target.x; })
    .attr("y2", function(d) { return d.target.y; });

 gnodes.attr("transform", function(d) { 
    return 'translate(' + [d.x, d.y] + ')'; 
}); 
});
};

drawGraph(graph);
</script>
</body>
</html>

我试着做以下代码,但它既不起作用:

.on("mouseover", function(d)
 {
    d3.select(this).transition()
    .duration(750)
    .attr("r", 15);
     d3.select(this).append(text)
    .style("visibility", "visible");
 })

将鼠标移到该节点上时,如何显示与特定节点相关的文本?有谁可以帮我解决这个问题.先感谢您.

解决方法:

这应该有所帮助:

.on("mouseover", function(d)
 {
     d3.select(labels[0][d.index]).style("visibility","visible")
 })
.on("mouseout", function(d)
 {
     d3.select(labels[0][d.index]).style("visibility","hidden")
 })

标签:jquery,javascript,css,d3-js,force-layout
来源: https://codeday.me/bug/20190612/1225549.html