-1

我有几个包含人名的圆圈,我需要使用 d3.js 在矩形中单击圆圈时显示他们的信息

下面是我的脚本

    var width = 960,
    height = 500;
    var svg = d3.select("body").append("svg")
    .attr("width", width)
    .attr("height", height)
    d3.json("data.json", function (json) {
        /* Define the data for the circles */
        var elem = svg.selectAll("g myCircleText")
        .data(json.nodes)
        /*Create and place the "blocks" containing the circle and the text */
        var elemEnter = elem.enter()
        .append("g")
        .attr("transform", function (d) { return "translate(" + d.x + ",80)" })
        /*Create the circle for each block */
        var circle = elemEnter.append("circle")
        .attr("r", function (d) { return d.r })
        .attr("stroke", "black")
        .attr("fill", "white")
        .on("click", function () {

        var s = svg
                .selectAll("circle");
          s
    .append("rect")
        .attr("x", 100)
        .attr("y", 200)
        .attr("width", 200)
           .attr("width", 200)
        .style("fill", "red");
       });

        /* Create the text for each block */
        elemEnter.append("text")
        .attr("dx", function (d) { return -20 })
        .text(function (d) { return d.label })
    })

below is the json file:
{"nodes":[
  {"x":80, "r":40, "label":"Sam","info":"Developer"}, 
  {"x":200, "r":60, "label":"Pam","info":"Programmer"}, 
  {"x":380, "r":80, "label":"Ram","info":"Architect"}
]}

正在绘制带有名称的圆圈,但是当我单击圆圈时,什么也没有发生。

请帮忙。

谢谢

4

1 回答 1

4

您的 onclick 功能有两个问题。首先,width设置第二次而不是高度:

.attr("width", 200)
.attr("width", 200)

其次,您将一个矩形附加到一个圆圈:

    var s = svg.selectAll("circle");
    s.append("rect")

这对 svg 无效:

<circle r="60" stroke="black" fill="white">
    <rect></rect>
</circle>

相反,矩形应该附加到 svg 或 ag 元素的根。

工作代码:

    .on("click", function () {          
      svg.append("rect")
          .attr("x", 100)
          .attr("y", 200)
          .attr("width", 200)
          .attr("height", 200)
          .style("fill", "red");
    });
于 2013-07-12T16:11:40.310 回答