TreeMap由Ben Shneiderman于1991年推出,TreeMap递归细分面积成矩形。与邻接图相比,树中任何节点的大小迅速显现出来。树形图是使用颜色区分类别,用嵌套的方形表示层次关系的布局。例如本例中,A包含B,B包含C...D包含E,每一类的颜色都一样,且每一类互不相同。
D3中相关API可以参考Treemap-Layout
主要应用:NewsMap是一个TreeMap的典型应用,它是一个新闻聚合网站,该网站在2007年11月就已经上线近4年,数据来源于Google News。NewsMap用树形图可视化展现新闻标题,其中不同颜色代表不同新闻类别,不同大小代表不同数量。
知乎上有一个Treemap的简介,讲诉了树形图的历史,实现技术和主要应用:来,认识一下这个数据可视化中的90后:Treemap
<!DOCTYPE html> <head> <meta charset="utf-8"> <title>testD3-33-paddingTree.html</title> <style> .node { border: solid 1px white; font: 10px sans-serif; line-height: 12px; overflow: hidden; position: absolute; text-indent: 2px; } </style> </head> <body> <script src="http://localhost:8080/spring/js/d3.v3.js" charset="utf-8" ></script> <script type="text/javascript"> var width = 960, height = 500; var color = d3.scale.category20c();//20种颜色 //(1)填充树 var treemap = d3.layout.treemap()//使用递归的空间分割来显示节点的树。 .size([width, height])//指定x和y的布局大小。 .padding(4)//指定一个父及其子之间的填充。 .value(function(d) { //获取或设置树形细胞的大小。 return d.size/2; }); //(2)设置每个树细胞用div存放 var div = d3.select("body").append("div") .style("position", "relative")//位置相依,作用没看出来? .style("width", width + "px") .style("height", height + "px"); //(3)设置每个树细胞各个属性 d3.json("http://localhost:8080/spring/D3data/paddingTree.json", function(error, root) { div.selectAll(".node") .data(treemap.nodes(root))//计算树形布局和返回节点的数组。 .enter().append("div") .attr("class", "node") .style("left", function(d) { return d.x + "px"; }) .style("top", function(d) { return d.y + "px"; }) .style("width", function(d) { return Math.max(0, d.dx - 1) + "px"; }) .style("height", function(d) { return Math.max(0, d.dy - 1) + "px"; }) .style("background", function(d) { //只为有孩子的节点赋值,也就是说叶子节点的背景颜色都是他爸爸的颜色 return d.children ? color(d.name) : null; }) .text(function(d) { //同理,孩子设置文字,爸爸没有 return d.children ? null : d.name; }); }); </script> </body>