在这里,我正在使用 D3 网络图表。我需要包含链接的标签或工具提示。在我的小提琴中,出现了工具提示,但我无法在其中显示文本。(我需要包含每个子节点的权重作为链接标签)。而且我还尝试包含链接标签,但它根本没有出现。
这是我的代码:
var width = 500
height = 550;
var cluster = d3.layout.cluster()
.size([height - height * 0, width - width * 0.5]);
var diagonal = d3.svg.diagonal()
.projection(function(d) {
return [d.y, d.x];
});
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height)
.attr("style", "padding-left:5%")
.attr("pointer-events", "all")
.call(d3.behavior.zoom().on("zoom", redraw));
// Define the div for the tooltip
var div = d3.select("body").append("div")
.attr("class", "tooltip")
.style("opacity", 0);
var vis = svg
.append("svg:g");
vis.append("svg:rect")
.attr("width", width)
.attr("height", height)
.attr("fill", 'white');
function redraw() {
vis.attr("transform",
"translate(" + d3.event.translate + ")" +
" scale(" + d3.event.scale + ")");
}
var root = {
"name": "output",
"children": [{
"name": "sum",
"children": [{
"name": "Base",
"children": [],
"weight": 1.0000002576768052
}, {
"name": "H0",
"children": [],
"weight": 2.5767680512326025e-7
}]
}]
};
var nodes = cluster.nodes(root),
links = cluster.links(nodes);
vis.append("svg:defs").selectAll("marker")
.data(["end"]) // Different link/path types can be defined here
.enter().append("svg:marker") // This section adds in the arrows
.attr("id", String)
.attr("viewBox", "0 -5 10 10")
.attr("refX", 15)
.attr("refY", -1.5)
.attr("markerWidth", 6)
.attr("markerHeight", 6)
.attr("orient", "auto")
.append("svg:path")
.attr("d", "M0,-5L10,0L0,5");
var link = vis.selectAll(".link")
.data(links)
.enter().append("path")
.attr("class", "link")
.attr("marker-end", "url(#end)")
.attr("d", diagonal)
.on("mouseover", function(d) {
//console.log(d.children.weight);
div.transition()
.duration(200)
.style("opacity", .9);
div .html(d.children)
.style("left", (d3.event.pageX) + "px")
.style("top", (d3.event.pageY - 28) + "px");
})
.on("mouseout", function(d) {
div.transition()
.duration(500)
.style("opacity", 0);
});
var node = vis.selectAll(".node")
.data(nodes)
.enter().append("g")
.attr("class", "node")
.attr("transform", function(d) {
return "translate(" + d.y + "," + d.x + ")";
})
.on("mouseover", mouseover)
.on("mouseout", mouseout);
node.append("circle")
.attr("r", 4.5)
.style("fill", "#3182bd");
node.append("svg:text")
.attr("dx", function(d) {
return d.children ? -8 : 8;
})
.attr("dy", 3)
.style("text-anchor", function(d) {
return d.children ? "end" : "start";
})
.style("fill", "#3182bd")
.text(function(d) {
return d.name;
});
linktext.enter().append("g").attr("class", "linklabelholder")
.append("text")
.attr("class", "linklabel")
.style("font-size", "13px")
.attr("x", "50")
.attr("y", "-20")
.attr("text-anchor", "start")
.style("fill","#000")
.append("textPath")
.attr("xlink:href",function(d,i) { return "#linkId_" + i;})
.text(function(d) {
return d.type;
});
var text = svg.append("svg:g").selectAll("g")
.data(nodes)
.enter().append("svg:g");
text.append("svg:text")
.attr("x", "-1em")
.attr("y", ".31em")
.style("font-size", "13px")
.text(function(d) { return d.name; });
function mouseover() {
d3.select(this).select("circle").transition()
.duration(750)
.attr("r", 9)
d3.select(this).select("text").transition()
.duration(750)
.style("stroke-width", ".5px")
.style("font", "22.8px serif")
.style("opacity", 1);
}
function mouseout() {
d3.select(this).select("circle").transition()
.duration(750)
.attr("r", 4.5)
d3.select(this).select("text").transition()
.duration(750)
.style("font", "12px serif")
.style("opacity", 0.8);
}
d3.select(self.frameElement).style("height", height + "px");