3

我是 D3JS 的新手,我需要为每个节点创建包含图像或圆圈的强制布局。这意味着,动态添加 Image 节点或 Circle 节点。这可能吗?,如果有任何例子,请回答

4

2 回答 2

7

好吧,如果您只想在圆圈中间放置一个图像,请尝试以下操作:

/* Create nodes */
var node = vis.selectAll("g.node")
    .data(json.nodes) // get the data how you want
    .enter().append("svg:g")
    .call(node_drag);

/* append circle to node */
node.append("svg:circle")
    .attr("cursor","pointer")
    .style("fill","#c6dbef")
    .attr("r", "10px"})

/* append image to node */
node.append("image")
    .attr("xlink:href", "https://github.com/favicon.ico")
    .attr("x", -8)
    .attr("y", -8)
    .attr("width", 16)
    .attr("height", 16);

您还可以附加标题,一些文本...有关更多信息,请参阅文档。selection.append(name)

于 2012-10-14T13:10:43.070 回答
0

对于动态图像,您可以将图像保存在本地,使用图像名称可以使用本地的动态图像。

要制作圆圈,您可以使用:

 var groups = node.enter().append("g")
        .attr("class", "node")
        .attr("id", function (d) {
            return d.entityType;
        })
        .on('click', click)

    groups.append("circle")
       .attr("cursor", "pointer")
       .style("fill", function(d) { return color(d.entityType); })
       .style("fill", "#fff")
       .style("stroke-width", "0")
       .style("stroke", "#ddd")
     .attr("r", 20);

在这里,d.entityType将是图像示例的名称:favicon.png

groups.append("image")
       .attr("xlink:href",function (d) {
            return "../assets/images/"+d.entityType+".png";
            })
        .attr("x", -14)
        .attr("y", -15)
        .attr("width", 30)
        .attr("height", 30)

如果要在圆圈内添加文本,可以使用:

groups.append("text")
        .attr("dy", 18)
        .style("font-size", "2.5px")
        .style("text-anchor", "middle")
        .style('fill','#000')
        .attr("refX", 15)
        .attr("refY", -1.5)
        .text(function (d) {
            return d.entityName;
        });
于 2017-10-09T07:54:49.587 回答