2

参考这个小提琴示例

我需要用图像替换符号......或者首先可能是单个图像......例如,这个图像:

https://github.com/favicon.ico

我在代码中尝试如下:

vis.selectAll("path")
     .data(nodes)
   .enter().append("path")
     .attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; })
     .append("image")
   .attr("xlink:href", "https://github.com/favicon.ico")
       .attr("x", -8)
       .attr("y", -8)
       .attr("width", 16)
       .attr("height", 16)
       .style("stroke", "black")
       .style("stroke-width", "1px")
       .call(force.drag);

它将标签附加 image到每个path标签,但不显示图像本身。有什么提示吗?

4

1 回答 1

4

您将每个图像附加为每个路径的子项。您可能想要的是附加一个包含路径和图像的组(我认为这是您在第一条评论中提出的问题)。

像这样的东西:

var groups = vis.selectAll("g")
    .data(nodes).enter()
    .append("g")
    .attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; })
    .call(force.drag);

groups.append("path")
    .attr("d", d3.svg.symbol()
        .size(function(d) { return d.size; })
        .type(function(d) { return d.type; }))
    .style("fill", "steelblue")
    .style("stroke", "black")
    .style("stroke-width", "1.5px");

groups.append("image")
   .attr("xlink:href", "https://github.com/favicon.ico")
       .attr("x", -8)
       .attr("y", -8)
       .attr("width", 16)
       .attr("height", 16)
       .style("stroke", "black")
       .style("stroke-width", "1px");

见:http: //jsfiddle.net/findango/a7as6/4/

于 2013-07-31T22:58:03.290 回答