Last active
August 29, 2015 14:26
-
-
Save worg/e038f85a20e1a6b93570 to your computer and use it in GitHub Desktop.
test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "flare", | |
| "children": [ | |
| { | |
| "name": "analytics", | |
| "children": [ | |
| { | |
| "name": "Vanes", | |
| "children": [ | |
| {"name": "Ventas", "size": 3938}, | |
| {"name": "Prosoecto", "size": 3812}, | |
| {"name": "Refacciones", "size": 6714}, | |
| {"name": "Servicio", "size": 743} | |
| ] | |
| }, | |
| { | |
| "name": "Buses", | |
| "children": [ | |
| {"name": "Ventas", "size": 3938}, | |
| {"name": "Prosoecto", "size": 3812}, | |
| {"name": "Refacciones", "size": 6714}, | |
| {"name": "Servicio", "size": 743} | |
| ] | |
| }, | |
| { | |
| "name": "Camiones", | |
| "children": [ | |
| {"name": "Ventas", "size": 3938}, | |
| {"name": "Prosoecto", "size": 3812}, | |
| {"name": "Refacciones", "size": 6714}, | |
| {"name": "Servicio", "size": 743} | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style> | |
| .node { | |
| cursor: pointer; | |
| } | |
| .node:hover { | |
| stroke: #000; | |
| stroke-width: 1.5px; | |
| } | |
| .node--leaf { | |
| fill: rgba(255,255,255,0.8); | |
| } | |
| .label { | |
| font: 11px "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| text-anchor: middle; | |
| text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff; | |
| } | |
| .label, | |
| .node--root, | |
| .node--leaf { | |
| pointer-events: none; | |
| } | |
| </style> | |
| <body> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script> | |
| <script> | |
| var margin = 20, | |
| diameter = 960; | |
| var color = d3.scale.linear() | |
| .domain([-1, 5]) | |
| .range(["hsl(152,40%,40%)", "hsl(1228,30%,40%)"]) | |
| .interpolate(d3.interpolateHcl); | |
| var pack = d3.layout.pack() | |
| .padding(2) | |
| .size([diameter - margin, diameter - margin]) | |
| .value(function(d) { return d.size; }) | |
| var svg = d3.select("body").append("svg") | |
| .attr("width", diameter) | |
| .attr("height", diameter) | |
| .append("g") | |
| .attr("transform", "translate(" + diameter / 2 + "," + diameter / 2 + ")"); | |
| d3.json("flare.json", function(error, root) { | |
| if (error) throw error; | |
| var focus = root, | |
| nodes = pack.nodes(root), | |
| view; | |
| var circle = svg.selectAll("circle") | |
| .data(nodes) | |
| .enter().append("circle") | |
| .attr("class", function(d) { return d.parent ? d.children ? "node" : "node node--leaf" : "node node--root"; }) | |
| .style("fill", function(d) { return d.children ? color(d.depth) : null; }) | |
| .on("click", function(d) { if (focus !== d) zoom(d), d3.event.stopPropagation(); }); | |
| var text = svg.selectAll("text") | |
| .data(nodes) | |
| .enter().append("text") | |
| .attr("class", "label") | |
| .style("fill-opacity", function(d) { return d.parent === root ? 1 : 0; }) | |
| .style("display", function(d) { return d.parent === root ? null : "none"; }) | |
| .text(function(d) { return d.name; }); | |
| var node = svg.selectAll("circle,text"); | |
| d3.select("body") | |
| .style("background", color(-1)) | |
| .on("click", function() { zoom(root); }); | |
| zoomTo([root.x, root.y, root.r * 2 + margin]); | |
| function zoom(d) { | |
| var focus0 = focus; focus = d; | |
| var transition = d3.transition() | |
| .duration(d3.event.altKey ? 7500 : 750) | |
| .tween("zoom", function(d) { | |
| var i = d3.interpolateZoom(view, [focus.x, focus.y, focus.r * 2 + margin]); | |
| return function(t) { zoomTo(i(t)); }; | |
| }); | |
| transition.selectAll("text") | |
| .filter(function(d) { return d.parent === focus || this.style.display === "inline"; }) | |
| .style("fill-opacity", function(d) { return d.parent === focus ? 1 : 0; }) | |
| .each("start", function(d) { if (d.parent === focus) this.style.display = "inline"; }) | |
| .each("end", function(d) { if (d.parent !== focus) this.style.display = "none"; }); | |
| } | |
| function zoomTo(v) { | |
| var k = diameter / v[2]; view = v; | |
| node.attr("transform", function(d) { return "translate(" + (d.x - v[0]) * k + "," + (d.y - v[1]) * k + ")"; }); | |
| circle.attr("r", function(d) { return d.r * k; }); | |
| } | |
| }); | |
| d3.select(self.frameElement).style("height", diameter + "px"); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment