javascript - 如何绘制多个 d3js 可缩放 TreeMap

标签 javascript d3.js graph data-visualization treemap

我正在尝试绘制多个 d3js 可缩放 TreeMap 。

我根据这个例子画了一个成功https://codepen.io/moktc/pen/XMGgwP .当我重复使用绘图功能时,第一个图表显示空白,就像它需要显示数据一样。

绘图函数是

function drawTreeMap(tree) {


        treemap = d3.treemap()
                .tile(d3.treemapSquarify.ratio(height / width * 0.69 *(1 + Math.sqrt(5))))
                .size([width, height])
                .round(false)
                .paddingInner(1);

        var id = "#" +tree;
      svg = d3.select(id).append("svg")
      .attr("width", width + margin.left + margin.right)
      .attr("height", height + margin.bottom + margin.top)
      .style("margin-left", -margin.left + "px")
      .style("margin.right", -margin.right + "px")
        .append("g")
      .attr("transform", "translate(" + margin.left + "," + margin.top + ")")
      .style("shape-rendering", "crispEdges");

      grandparent = svg.append("g")
      .attr("class", "grandparent");

      grandparent.append("rect")
      .attr("y", -margin.top)
      .attr("width", width)
      .attr("height", margin.top);

      grandparent.append("text")
      .attr("x", 6)
      .attr("y", 6 - margin.top)
      .attr("dy", ".75em");
};

当我使用此函数 twite 显示第二个树形图时,其数据与第一个树形图相同。第一个变成空白

最佳答案

svg , grandparenttreemap是在你的函数之外声明的所有对象 drawTreemap() (这在您发布的代码中并不明显,但可以在 CodePen 上的完整代码示例中看到),因此两次调用该函数将对相同的对象执行两次。由于这些对象构成了树状图的一部分,因此您需要为第二个树状图单独复制这些对象,因此应在 drawTreemap() 中声明它们。 .

此外,请注意函数 display()包含对祖 parent 的引用,未传递给 display()作为论据,所以 display() 的两份副本需要为每个祖 parent 的副本单独申报。因此,display()也应在 drawTreemap() 内声明(请注意 Javascript functions are closures ,即它们的定义包括对声明函数时范围内的所有变量的引用,因此可以声明引用不在全局范围内的变量的函数,而无需将它们传递给函数作为参数)。

三、函数initialize() , accumulate() , layout() , treemap()display()需要为每个 TreeMap 单独调用,因此将这些调用包含在 drawTreemap() 中是有意义的.

因此你应该声明svg , grandparent , treemapdisplay()本地内部 drawTreemap()并包括对 initialize() 的调用, accumulate() , layout() , treemap()display() ,可以按如下方式完成:

function drawTreemap(treeId) {

    var id = "#" + treeId;
    var svg = d3.select(id).append("svg")
        .attr("width", width - margin.left - margin.right)
        .attr("height", height - margin.bottom - margin.top)
        .style("margin-left", -margin.left + "px")
        .style("margin.right", -margin.right + "px")
        .append("g")
        .attr("transform", "translate(" + margin.left + "," + margin.top + ")")
        .style("shape-rendering", "crispEdges");

    var grandparent = svg.append("g")
        .attr("class", "grandparent");

    grandparent.append("rect")
        .attr("y", -margin.top)
        .attr("width", width)
        .attr("height", margin.top);

    grandparent.append("text")
        .attr("x", 6)
        .attr("y", 6 - margin.top)
        .attr("dy", ".75em");

    var treemap = d3.treemap()
        //.tile(d3.treemapResquarify)
        .size([width, height])
        .round(false)
        .paddingInner(1);

    initialize(root);
    accumulate(root);
    layout(root);
    treemap(root);
    display(root);

    function display(d) {

        //...
    }

}

这是完整的代码,基于您引用的 CodePen 上的示例:

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <meta charset="utf-8" />
    <style>
        text {
          pointer-events: none;
        }

        .grandparent text {
          font-weight: bold;
        }

        rect {
          fill: none;
          stroke: #fff;
        }

        rect.parent,
        .grandparent rect {
          stroke-width: 2px;
        }

        .grandparent rect {
          fill: orange;
        }

        .grandparent:hover rect {
          fill: #ee9700;
        }

        .children rect.parent,
        .grandparent rect {
          cursor: pointer;
        }

        .children rect.parent {
          fill: #bbb;
          fill-opacity: .5;
        }

        .children:hover rect.child {
          fill: #bbb;
        }
    </style>
</head>
<body>
    <p id="chart">
        Sample zoomable treemap
    </p>
    <div id="tree1"></div>
    <div id="tree2"></div>

    <script src="js/d3.v4.js"></script>
    <script>
        var data = {
            "name": 'Sample',
            "shortName": 'Sample',
            "children": [
              {
                "name": "6.1 Identify and plan learning needs",
                "shortName": "AITSL-A61",
                "size": null,
                "children": [
                  {
                    "name": "Analyse the Standards for.",
                    "shortName": "AITSL-A61-H",
                    "size": 59,
                    "children": [

                    ]
                  },
                  {
                    "name": "Demonstrate an  of the role of the",
                    "shortName": "AITSL-A61-G",
                    "size": 448,
                    "children": [

                    ]
                  },
                  {
                    "name": "Use  knowledge of the Standards for ",
                    "shortName": "AITSL-A61-L",
                    "size": 59,
                    "children": [

                    ]
                  },
                  {
                    "name": "Use the  plan learning needs.",
                    "shortName": "AITSL-A61-P",
                    "size": 101,
                    "children": [

                    ]
                  }
                ]
              },
              {
                "name": "6.2 Engage in improve practice",
                "shortName": "AITSL-A62",
                "size": null,
                "children": [
                  {
                    "name": "Participate in to update knowledge .",
                    "shortName": "AITSL-A62-P",
                    "size": 92,
                    "children": [

                    ]
                  },
                  {
                    "name": "Understand appropriate sources of .",
                    "shortName": "AITSL-A62-G",
                    "size": 405,
                    "children": [

                    ]
                  },
                  {
                    "name": "Plan for  and critiquing ",
                    "shortName": "AITSL-A62-H",
                    "size": 49,
                    "children": [

                    ]
                  },
                  {
                    "name": "Initiate to expand opportunities.",
                    "shortName": "AITSL-A62-L",
                    "size": 47,
                    "children": [

                    ]
                  }
                ]
              },
              {
                "name": "6.3 Engage with  and improve practice",
                "shortName": "AITSL-A63",
                "size": null,
                "children": [
                  {
                    "name": "Contribute to collegial  and apply.",
                    "shortName": "AITSL-A63-P",
                    "size": 84,
                    "children": [

                    ]
                  },
                  {
                    "name": "Initiate and engage in  discussions.",
                    "shortName": "AITSL-A63-H",
                    "size": 51,
                    "children": [

                    ]
                  },
                  {
                    "name": "Seek and feedback from .",
                    "shortName": "AITSL-A63-G",
                    "size": 458,
                    "children": [

                    ]
                  },
                  {
                    "name": "Implement  dialogue within   by .",
                    "shortName": "AITSL-A63-L",
                    "size": 40,
                    "children": [

                    ]
                  }
                ]
              },
              {
                "name": "6.4 Apply  improve learning",
                "shortName": "AITSL-A64",
                "size": null,
                "children": [
                  {
                    "name": "Undertake  .",
                    "shortName": "AITSL-A64-P",
                    "size": 76,
                    "children": [

                    ]
                  },
                  {
                    "name": "Demonstrate an  of the rationale.",
                    "shortName": "AITSL-A64-G",
                    "size": 426,
                    "children": [

                    ]
                  },
                  {
                    "name": "Engage with  to evaluate the .",
                    "shortName": "AITSL-A64-H",
                    "size": 54,
                    "children": [

                    ]
                  },
                  {
                    "name": "Advocate,  in and lead high-quality .",
                    "shortName": "AITSL-A64-L",
                    "size": 43,
                    "children": [

                    ]
                  }
                ]
              }
            ]
        };

        var margin = { top: 20, right: 0, bottom: 0, left: 0 },
            width = 640, //640
            height = 530,
            formatNumber = d3.format(",d"),
            transitioning;

        var x = d3.scaleLinear()
            .domain([0, width])
            .range([0, width]);

        var y = d3.scaleLinear()
            .domain([0, height - margin.top - margin.bottom])
            .range([0, height - margin.top - margin.bottom]);


        var color = d3.scaleOrdinal()
            .range(d3.schemeCategory10
            .map(function (c) { c = d3.rgb(c); c.opacity = 0.6; return c; }));

        var fader = function (color) { return d3.interpolateRgb(color, "#fff")(0.2); };

        var format = d3.format(",d");

        //var treemap;

        //var svg, grandparent;


        var root = d3.hierarchy(data)
            .eachBefore(function (d) { d.id = (d.parent ? d.parent.id + "." : "") + d.data.shortName; })
            .sum(function (d) { return d.size; })  // access the numeric attribute of the data
            .sort(function (a, b) {
                console.log('initial root sort a ' + a.value + ' b ' + b.value);
                return b.height - a.height || b.value - a.value;
            });

        function updateDrillDown() {

            drawTreemap("tree1");
            drawTreemap("tree2");

        };


        function drawTreemap(treeId) {

            var id = "#" + treeId;
            var svg = d3.select(id).append("svg")
                .attr("width", width - margin.left - margin.right)
                .attr("height", height - margin.bottom - margin.top)
                .style("margin-left", -margin.left + "px")
                .style("margin.right", -margin.right + "px")
                .append("g")
                .attr("transform", "translate(" + margin.left + "," + margin.top + ")")
                .style("shape-rendering", "crispEdges");

            var grandparent = svg.append("g")
                .attr("class", "grandparent");

            grandparent.append("rect")
                .attr("y", -margin.top)
                .attr("width", width)
                .attr("height", margin.top);

            grandparent.append("text")
                .attr("x", 6)
                .attr("y", 6 - margin.top)
                .attr("dy", ".75em");

            var treemap = d3.treemap()
                //.tile(d3.treemapResquarify)
                .size([width, height])
                .round(false)
                .paddingInner(1);

            initialize(root);
            accumulate(root);
            layout(root);
            treemap(root);
            display(root);



            function display(d) {

                grandparent
                    .datum(d.parent)
                    .on("click", transition)
                  .select("text")
                    .text(name(d));

                var g1 = svg.insert("g", ".grandparent")
                    .datum(d)
                    .attr("class", "depth");

                var g = g1.selectAll("g")
                    .data(d._children)
                  .enter().append("g");

                g.filter(function (d) { return d._children; })
                    .classed("children", true)
                    .on("click", transition);

                var children = g.selectAll(".child")
                    .data(function (d) { return d._children || [d]; })
                  .enter().append("g");

                children.append("rect")
                    .attr("class", "child")
                    .call(rect)
                  .append("title")
                    .text(function (d) { return d.data.shortName + " (" + formatNumber(d.value) + ")"; });

                children.append("text")
                    .attr("class", "ctext")
                    .text(function (d) { return d.data.shortName; })
                    .call(text2);

                g.append("rect")
                    .attr("class", "parent")
                    .call(rect);


                var t = g.append("text")
                  .attr("class", "ptext")
                  .attr("dy", ".75em")

                t.append("tspan")
                  .text(function (d) { return d.data.shortName; });
                t.append("tspan")
                  .attr("dy", "1.0em")
                  .text(function (d) { return formatNumber(d.value); });
                t.call(text);

                g.selectAll("rect")
                  .style("fill", function (d) { return color(d.data.shortName); });



                function transition(d) {
                    if (transitioning || !d) return;
                    transitioning = true;

                    var g2 = display(d),
                        t1 = g1.transition().duration(750),
                        t2 = g2.transition().duration(750);


                    // Update the domain only after entering new elements.
                    x.domain([d.x0, d.x0 + d.x1]);
                    y.domain([d.y0, d.y0 + d.y1]);

                    // Enable anti-aliasing during the transition.
                    svg.style("shape-rendering", null);

                    // Draw child nodes on top of parent nodes.
                    svg.selectAll(".depth").sort(function (a, b) {
                        console.log('.depth sort a ' + a.depth + ' b ' + b.depth);
                        return a.depth - b.depth;
                    });

                    // Fade-in entering text.
                    g2.selectAll("text").style("fill-opacity", 0);

                    // Transition to the new view.
                    t1.selectAll("text").call(text).style("fill-opacity", 0);
                    t2.selectAll("text").call(text).style("fill-opacity", 1);
                    t1.selectAll("rect").call(rect);
                    t2.selectAll("rect").call(rect);

                    // Remove the old node when the transition is finished.
                    t1.remove().on("end", function () {
                        svg.style("shape-rendering", "crispEdges");
                        transitioning = false;
                    });
                }

                return g;
            }


        }  // end of drawTreemap()



        function initialize(root) {
            root.x = root.y = 0;
            root.x1 = width;
            root.y1 = height;
            root.depth = 0;
        }

        // Aggregate the values for internal nodes. This is normally done by the
        // treemap layout, but not here because of our custom implementation.
        // We also take a snapshot of the original children (_children) to avoid
        // the children being overwritten when when layout is computed.
        function accumulate(d) {
            console.log('accumulate called ' + d.data.name);
            return (d._children = d.children)
                ? d.value = d.children.reduce(function (p, v) { return p + accumulate(v); }, 0)
                : d.value;
        }

        // Compute the treemap layout recursively such that each group of siblings
        // uses the same size (1×1) rather than the dimensions of the parent cell.
        // This optimizes the layout for the current zoom state. Note that a wrapper
        // object is created for the parent node for each group of siblings so that
        // the parent’s dimensions are not discarded as we recurse. Since each group
        // of sibling was laid out in 1×1, we must rescale to fit using absolute
        // coordinates. This lets us use a viewport to zoom.
        function layout(d) {
            if (d._children) {
                //    treemap.nodes({_children: d._children});
                //    treemap(d);
                d._children.forEach(function (c) {
                    c.x0 = d.x0 + c.x0 * d.x1;
                    c.y0 = d.y0 + c.y0 * d.y1;
                    c.x1 *= d.x1;
                    c.y1 *= d.y1;
                    c.parent = d;
                    layout(c);
                });
            }
        }


        function text(text) {
            text.selectAll("tspan")
                .attr("x", function (d) { return x(d.x0) + 6; })
            text.attr("x", function (d) { return x(d.x0) + 6; })
                .attr("y", function (d) { return y(d.y0) + 10; })
                .style("opacity", function (d) {
                    console.log("text opacity setting textlength " + this.getComputedTextLength() + " d size " + (x(d.x0 + d.x1) - x(d.x0)));
                    return this.getComputedTextLength() < x(d.x0 + d.x1) - x(d.x0) ? 1 : 0;
                });
        }

        function text2(text) {
            text.attr("x", function (d) { return x(d.x0 + d.x1) - this.getComputedTextLength() - 6; })
                .attr("y", function (d) { return y(d.y0 + d.y1) - 6; })
                .style("opacity", function (d) { return this.getComputedTextLength() < x(d.x0 + d.x1) - x(d.x0) ? 1 : 0; });
        }

        function rect(rect) {
            rect.attr("x", function (d) { return x(d.x0); })
                .attr("y", function (d) { return y(d.y0); })
                .attr("width", function (d) {
                    console.log('id ' + d.id + ' rect width ' + (d.x1 - d.x0));
                    return x(d.x0 + d.x1) - x(d.x0);
                    //return (d.x1 -d.x0);

                })
                .attr("height", function (d) {
                    console.log('id ' + d.id + ' rect height ' + (d.y1 - d.y0) + ' ordinal ' + (y(d.y1 + d.y0) - y(d.y0)));
                    return y(d.y0 + d.y1) - y(d.y0);
                    //return y(d.y1 - d.y0);

                });
        }

        function name(d) {
            return d.parent
                ? name(d.parent) + " / " + d.data.shortName + " (" + formatNumber(d.value) + ")"
                : d.data.shortName + " (" + formatNumber(d.value) + ")";
        }

        //$(function () {  // I have commented this out because I have not included jQuery.js
            updateDrillDown();
        //});

    </script>
</body>
</html>

编辑以解释如何一次只显示一个图表:

一次只显示一个图表的一种方法,具体取决于 <select> 的值框,是绘制两个图表,但使用 display 隐藏其中一个样式属性。例如:

    <!--Add this HTML-->
    <select id="chart_selector" onchange="toggleChartVisibility();">
        <option value="1" selected="selected">Chart 1</option>
        <option value="2">Chart 2</option>
    </select>
    <br />
    <div id="tree1"></div>
    <div id="tree2" style="display:none;"></div><!--Add this style to the second <div>-->

    <!-- ... -->
    <script>
        function toggleChartVisibility() {
            var chosen = document.getElementById("chart_selector").value;
            if (chosen == "1") {
                document.getElementById("tree1").style.display = "block";
                document.getElementById("tree2").style.display = "none";
            } else {
                document.getElementById("tree1").style.display = "none";
                document.getElementById("tree2").style.display = "block";
            }
        }
    </script>

使用 display隐藏其中一个图表的好处是,每次用户更改所选图表时,图表都不会从头开始重新绘制。

或者,如果您希望在任何给定时间只在文档中绘制一个图表,并在每次用户更改所选图表时绘制一个图表,您可以通过触发 updateDrillDown() 来实现。直接来自对 <select> 的更改框并在 updateDrillDown() 中包含代码在绘制新图表之前清除旧图表:

    <select id="chart_selector" onchange="updateDrillDown();">
        <option value="1" selected="selected">Chart 1</option>
        <option value="2">Chart 2</option>
    </select>
    <br />
    <div id="tree1"></div>
    <div id="tree2"></div>

        function updateDrillDown() {

            var chosen = document.getElementById("chart_selector").value;
            if (chosen == "1") {
                document.getElementById("tree2").innerHTML = "";
                drawTreemap("tree1");
            } else {
                document.getElementById("tree1").innerHTML = "";
                drawTreemap("tree2");
            }
        };

如果每个图表有不同的数据,您还应该包含创建root 的代码。里面drawTreemap()并在 treeId 上添加条件决定使用哪些数据。

关于javascript - 如何绘制多个 d3js 可缩放 TreeMap ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56583313/

相关文章:

javascript - 如何创建具有 'infinite' 滚动空间的网站?

javascript - 向原型(prototype)添加功能

javascript - 更改月份时清除过滤器

javascript - D3JS V4 根据值停止追加 tspan

python - 使用邻接表表示最小生成树

javascript - 使用具有相同键的 JSON 数据(在 D3 中)

javascript - 如何返回 d3.js 中路径的 y 坐标?

javascript - 向 svg g 元素添加填充

algorithm - 找出无向图的最大子集

graph - 检测图中循环的时间复杂度