Sha256: 771858fa6bac8cd6a8ab62e467b49dd8ebaba4cb508bec740bf42382aedcb955

Contents?: true

Size: 1.58 KB

Versions: 6

Compression:

Stored size: 1.58 KB

Contents

var w = 960,
    h = 500,
    fill = d3.scale.ordinal().range(colorbrewer.Greys[9].slice(1, 4)),
    stroke = d3.scale.linear().domain([0, 1e4]).range(["brown", "steelblue"]);

var treemap = d3.layout.treemap()
    .size([w, h])
    .value(function(d) { return d.size; });

var bundle = d3.layout.bundle();

var div = d3.select("#chart").append("div")
    .style("position", "relative")
    .style("width", w + "px")
    .style("height", h + "px");

var line = d3.svg.line()
    .interpolate("bundle")
    .tension(.85)
    .x(function(d) { return d.x + d.dx / 2; })
    .y(function(d) { return d.y + d.dy / 2; });

d3.json("../data/flare-imports.json", function(classes) {
  var nodes = treemap.nodes(packages.root(classes)),
      links = packages.imports(nodes);

  div.selectAll("div")
      .data(nodes)
    .enter().append("div")
      .attr("class", "cell")
      .style("background", function(d) { return d.children ? fill(d.key) : null; })
      .call(cell)
      .text(function(d) { return d.children ? null : d.key; });

  div.append("svg:svg")
      .attr("width", w)
      .attr("height", h)
      .style("position", "absolute")
    .selectAll("path.link")
      .data(bundle(links))
    .enter().append("svg:path")
      .style("stroke", function(d) { return stroke(d[0].value); })
      .attr("class", "link")
      .attr("d", line);
});

function cell() {
  this
      .style("left", function(d) { return d.x + "px"; })
      .style("top", function(d) { return d.y + "px"; })
      .style("width", function(d) { return d.dx - 1 + "px"; })
      .style("height", function(d) { return d.dy - 1 + "px"; });
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bum-0.0.17 public/d3/examples/bundle/bundle-treemap.js
bum-0.0.16 public/d3/examples/bundle/bundle-treemap.js
bum-0.0.15 public/d3/examples/bundle/bundle-treemap.js
bum-0.0.14 public/d3/examples/bundle/bundle-treemap.js
bum-0.0.13 public/d3/examples/bundle/bundle-treemap.js
bum-0.0.12 public/d3/examples/bundle/bundle-treemap.js