123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- Shiny.addCustomMessageHandler("treemap_values", function(message) {
- var data = message;
- console.log(data);
- var margin = {top: 24, right: 0, bottom: 0, left: 0},
- width = 1200, //640
- height = 500,
- 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 - 3*margin.top - margin.bottom]);
- var color = d3.scaleOrdinal()
- .range(d3.schemeSet3
- .map(function(c) { c = d3.rgb(c); c.opacity = 0.7; return c; }));
- //var color = d3.scaleOrdinal(d3.schemeCategory20.map(fader)); //schemeCategory20* is no longer supported
- var fader = function(color) { return d3.interpolateRgb(color, "#fff")(0.2); };
- var format = d3.format(",d");
- var treemap;
- var svg, grandparent;
- updateDrillDown();
- function updateDrillDown() {
- if (svg) {
- svg.selectAll("*").remove();
- } else {
- // var treemap = d3.layout.treemap()
- // .children(function(d, depth) { return depth ? null : d._children; })
- // .sort(function(a, b) { return a.value - b.value; })
- // .ratio(height / width * 0.5 * (1 + Math.sqrt(5)))
- // .round(false);
- svg = d3.select("#treemap_area").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");
- treemap = d3.treemap()
- .tile(d3.treemapResquarify.ratio(height / width * 0.5 * (1 + Math.sqrt(5))))
- .size([width, height - 10])
- .round(true)
- .paddingInner(0.5);
- }
- var root = d3.hierarchy(data)
- .eachBefore(function(d) { d.id = (d.parent ? d.parent.id + "." : "") + d.data.name; })
- //.sum((d) => d.value)
- .sum(function(d) {
- //console.log(d.value);
- return d.value;
- })
- .sort(function(a, b) {
- //console.log('initial root sort a ' + a.value + ' b ' + b.value);
- return b.height - a.height || b.value - a.value;
- });
- initialize(root);
- accumulate(root);
- layout(root);
- treemap(root);
- display(root);
- };
- 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 - d.x0);
- c.y0 = d.y0 + c.y0 * (d.y1 - d.y0);
- c.x1 *= d.x1;
- c.y1 *= d.y1;*/
- c.x0 = d.x0 + c.x0 * d.x1;
- c.y0 = d.y0 + c.y0 * d.y1;
- c.x1 *= (d.x1 - d.x0);
- c.y1 *= (d.y1 - d.y0);
- c.parent = d;
- layout(c);
- });
- }
- }
- 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.name + " (" + formatNumber(d.data.value) + ")"; });
- children.append("text")
- .attr("class", "ctext")
- .text(function(d) { return d.data.name; })
- .call(text2);
- g.append("rect")
- .attr("class", "parent")
- .call(rect);
- var t = g.append("text")
- .attr("class", "ptext").style("font-weight", "bold")
- .attr("dy", ".75em");
- t.append("tspan")
- .attr("font-weigh", "bold")
- .text(function(d) { return d.data.name; });
- t.append("tspan")
- .attr("dy", "1.0em")
- .text(function(d) { return formatNumber(d.data.value); });
- t.call(text);
- g.selectAll("rect")
- .style("fill", function(d) { return color(d.data.name); });
- 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]);
- x.domain([d.x0, d.x0 + (d.x1 - d.x0)]);
- y.domain([d.y0, d.y0 + (d.y1 - d.y0)]);
- // 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(".ptext").call(text).style("fill-opacity", 0).style("font-weight", "bold");
- t2.selectAll(".ptext").call(text).style("fill-opacity", 1).style("font-weight", "bold");
- t1.selectAll(".ctext").call(text2).style("fill-opacity", 0);
- t2.selectAll(".ctext").call(text2).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;
- }
- 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) + 3;})
- .style("opacity", function(d) {
- var w = x(d.x1) - x(d.x0);
- //console.log("text opacity setting textlength " + this.getComputedTextLength() + " d size " + w);
- return this.getComputedTextLength() < w ? 1 : 0; });
- }
- function text2(text) {
- text.attr("x", function(d) {
- return x(d.x1) - this.getComputedTextLength() - 3;
- })
- .attr("y", function(d) { return y(d.y1) - 3; })
- .style("opacity", function(d) {
- var w = x(d.x1) - x(d.x0);
- //console.log("text2 opacity setting textlength " + this.getComputedTextLength() + " d size " + w);
- return this.getComputedTextLength() < w ? 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) {
- var w = x(d.x1) - x(d.x0);
- //console.log('id ' + d.id +' rect width ' + w);
- return w;
- })
- .attr("height", function(d) {
- var h = y(d.y1) - y(d.y0);
- //console.log('id ' + d.id +' rect height ' + h);
- return h;
- });
- }
- function name(d) {
- return d.parent ? name(d.parent) + " / " + d.data.name + " (" + formatNumber(d.data.value) + ")" : d.data.name + " (" + formatNumber(d.data.value) + ")";
- }
- });
|