我有一个具有不同大小节点的力导向图。我想在连接两个节点的每条路径的中间显示一个自定义图标。从d3示例中,我找到了在节点内显示图像的方法。但是,当我在路径上尝试相同的技术时,图像不会显示。
var path = svg.append("svg:g").selectAll("path").data(force.links());
var pathEnter = path.enter().append("svg:path");
pathEnter.attr("class", function(d) {
return "link " + d.target.type;
})
pathEnter.append("svg:g").append("image")
.attr("xlink:href","http://127.0.0.1:8000/static/styles/images/add.png")
.attr("x",0).attr("y",0).attr("width",12).attr("height", 12)
.attr("class", "type-icon");
答案 0 :(得分:1)
我想在提问之前我需要更多的耐心。我解决问题的方法是:
var icon = svg.append("svg:g").selectAll("g")
.data(force.links()).enter().append("svg:g");
icon.append("image").attr("xlink:href","imagePath")
.attr("x", -20)
.attr("y", -2)
.attr("width", 12).attr("height", 12)
.attr("class", "type-icon");
然后在tick函数中:
icon.attr("transform", function(d) {
return "translate(" +((d.target.x+d.source.x)/2) + "," +
((d.target.y+d.source.y))/2 + ")";
});
获取两个节点之间的中心点。