You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
168 lines
5.0 KiB
168 lines
5.0 KiB
3 years ago
|
/* ------------------------------------------------------------------------------
|
||
|
*
|
||
|
* # D3.js - basic tree layout
|
||
|
*
|
||
|
* Demo of tree layout setup with .json data source
|
||
|
*
|
||
|
* Version: 1.0
|
||
|
* Latest update: August 1, 2015
|
||
|
*
|
||
|
* ---------------------------------------------------------------------------- */
|
||
|
|
||
|
$(function () {
|
||
|
|
||
|
// Initialize chart
|
||
|
treeBasic('#d3-tree-basic', 800);
|
||
|
|
||
|
// Chart setup
|
||
|
function treeBasic(element, height) {
|
||
|
|
||
|
|
||
|
// Basic setup
|
||
|
// ------------------------------
|
||
|
|
||
|
// Define main variables
|
||
|
var d3Container = d3.select(element),
|
||
|
margin = {top: 0, right: 0, bottom: 0, left: 40},
|
||
|
width = d3Container.node().getBoundingClientRect().width - margin.left - margin.right,
|
||
|
height = height - margin.top - margin.bottom - 5;
|
||
|
|
||
|
|
||
|
|
||
|
// Create chart
|
||
|
// ------------------------------
|
||
|
|
||
|
// Add SVG element
|
||
|
var container = d3Container.append("svg");
|
||
|
|
||
|
// Add SVG group
|
||
|
var svg = container
|
||
|
.attr("width", width + margin.left + margin.right)
|
||
|
.attr("height", height + margin.top + margin.bottom)
|
||
|
.append("g")
|
||
|
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
|
||
|
|
||
|
|
||
|
|
||
|
// Construct chart layout
|
||
|
// ------------------------------
|
||
|
|
||
|
// Tree
|
||
|
var tree = d3.layout.tree()
|
||
|
.size([height, width - 180]);
|
||
|
|
||
|
// Diagonal projection
|
||
|
var diagonal = d3.svg.diagonal()
|
||
|
.projection(function(d) { return [d.y, d.x]; });
|
||
|
|
||
|
|
||
|
|
||
|
// Load data
|
||
|
// ------------------------------
|
||
|
|
||
|
d3.json("assets/demo_data/d3/tree/tree_data_basic.json", function(error, json) {
|
||
|
|
||
|
var nodes = tree.nodes(json),
|
||
|
links = tree.links(nodes);
|
||
|
|
||
|
|
||
|
// Links
|
||
|
// ------------------------------
|
||
|
|
||
|
// Append link group
|
||
|
var linkGroup = svg.append("g")
|
||
|
.attr("class", "d3-tree-link-group");
|
||
|
|
||
|
// Append link path
|
||
|
var link = linkGroup.selectAll(".d3-tree-link")
|
||
|
.data(links)
|
||
|
.enter()
|
||
|
.append("path")
|
||
|
.attr("class", "d3-tree-link")
|
||
|
.attr("d", diagonal)
|
||
|
.style("fill", "none")
|
||
|
.style("stroke", "#ddd")
|
||
|
.style("stroke-width", 1.5);
|
||
|
|
||
|
|
||
|
// Nodes
|
||
|
// ------------------------------
|
||
|
|
||
|
// Append node group
|
||
|
var nodeGroup = svg.append("g")
|
||
|
.attr("class", "d3-tree-node-group");
|
||
|
|
||
|
// Append node
|
||
|
var node = nodeGroup.selectAll(".d3-tree-node")
|
||
|
.data(nodes)
|
||
|
.enter()
|
||
|
.append("g")
|
||
|
.attr("class", "d3-tree-node")
|
||
|
.attr("transform", function(d) { return "translate(" + d.y + "," + d.x + ")"; });
|
||
|
|
||
|
// Append node circles
|
||
|
node.append("circle")
|
||
|
.attr("r", 4.5)
|
||
|
.attr("class", "d3-tree-circle")
|
||
|
.style("fill", "#fff")
|
||
|
.style("stroke", "#2196F3")
|
||
|
.style("stroke-width", 1.5);
|
||
|
|
||
|
// Append node text
|
||
|
node.append("text")
|
||
|
.attr("dx", function(d) { return d.children ? -12 : 12; })
|
||
|
.attr("dy", 4)
|
||
|
.style("text-anchor", function(d) { return d.children ? "end" : "start"; })
|
||
|
.style("font-size", 12)
|
||
|
.text(function(d) { return d.name; });
|
||
|
|
||
|
|
||
|
|
||
|
// Resize chart
|
||
|
// ------------------------------
|
||
|
|
||
|
// Call function on window resize
|
||
|
$(window).on('resize', resize);
|
||
|
|
||
|
// Call function on sidebar width change
|
||
|
$('.sidebar-control').on('click', resize);
|
||
|
|
||
|
|
||
|
// Resize function
|
||
|
//
|
||
|
// Since D3 doesn't support SVG resize by default,
|
||
|
// we need to manually specify parts of the graph that need to
|
||
|
// be updated on window resize
|
||
|
function resize() {
|
||
|
|
||
|
// Layout variables
|
||
|
width = d3Container.node().getBoundingClientRect().width - margin.left - margin.right,
|
||
|
nodes = tree.nodes(json),
|
||
|
links = tree.links(nodes);
|
||
|
|
||
|
// Layout
|
||
|
// -------------------------
|
||
|
|
||
|
// Main svg width
|
||
|
container.attr("width", width + margin.left + margin.right);
|
||
|
|
||
|
// Width of appended group
|
||
|
svg.attr("width", width + margin.left + margin.right);
|
||
|
|
||
|
|
||
|
// Tree size
|
||
|
tree.size([height, width - 180]);
|
||
|
|
||
|
|
||
|
// Chart elements
|
||
|
// -------------------------
|
||
|
|
||
|
// Link paths
|
||
|
svg.selectAll(".d3-tree-link").attr("d", diagonal)
|
||
|
|
||
|
// Node paths
|
||
|
svg.selectAll(".d3-tree-node").attr("transform", function(d) { return "translate(" + d.y + "," + d.x + ")"; });
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
});
|