我需要在带有D3的节点之外绘制标签(名称)。这是我的代码:
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var width = window.innerWidth,
height = 400;
var color = d3.scale.category20();
var force = d3.layout.force()
.charge(-120)
.linkDistance(40)
.size([width, height]);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height)
.call(d3.behavior.zoom().on("zoom", redraw))
.append('g');
function redraw() {
svg.attr("transform",
"translate(" + d3.event.translate + ")"
+ " scale(" + d3.event.scale + ")");}
var drag = force.stop().drag()
.on("dragstart", function(d) {
d3.event.sourceEvent.stopPropagation();
});
d3.json("/static/net.json", function(error, graph) {
if (error) throw error;
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 node = svg.selectAll(".node")
.data(graph.nodes)
.enter().append("circle")
.attr("class", "node")
.attr("r", function(d) { return d.degree; })
.style("fill", function(d) { return color(d.group); })
.call(force.drag);
node.append("title")
.text(function(d) { return d.name; })
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; });
node.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; });
});
});
</script>
出于某种原因,只有在我用鼠标悬停在节点上时才会出现标签,而不是总是被绘制。
当我替换:
node.append("title")
.text(function(d) { return d.name; })
使用:
node.append("text")
.attr("dx", 12)
.attr("dy", ".35em")
.text(function(d) { return d.name });
即使悬停,也不会出现任何标签。
这段代码中是否有一些明显的东西?
答案 0 :(得分:1)
问题在于您尝试将文本元素附加到圆圈。
var node = svg.selectAll(".node")
.data(graph.nodes)
.enter().append("circle")
.attr("class", "node")
.attr("r", function(d) { return d.degree; })
.style("fill", function(d) { return color(d.group); })
.call(force.drag);
// node here consists of svg circles.
node.append("text")
.text(function(d) { return d.name; })
试试这个
var node = svg.selectAll(".node")
.data(graph.nodes)
.enter().append("g")
.attr("class", "node")
.call(force.drag); // moved this here
node.append("circle")
.attr("r", function(d) { return d.degree; })
.style("fill", function(d) { return color(d.group); })
// .call(force.drag);
// node here is a `g` element so we can append text elements to it.
node.append("text")
.text(function(d) { return d.name; })
我还将call(force.drag)
移到了.attr("class", "node")
行之后,以便将其应用于给定node
元素的所有子元素。