html 从外部(JSON)数据生成的D3.js树图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 从外部(JSON)数据生成的D3.js树图相关的知识,希望对你有一定的参考价值。

[
  {
  "name": "Top Level",
  "parent": "null",
  "children": [
    {
      "name": "Level 2: A",
      "parent": "Top Level",
      "children": [
        {
          "name": "Son of A",
          "parent": "Level 2: A"
        },
        {
          "name": "Daughter of A",
          "parent": "Level 2: A"
        }
      ]
    },
    {
      "name": "Level 2: B",
      "parent": "Top Level"
    }
  ]
}
]
�PNG

IHDR�x��~�sRGB���gAMA���aPLTE�������WW�W���W��������K�WW���FF�WW������R������WF��������h������������WW������P�����������J�����V�������|����������F�W��������W�������s��������������\�����������������������m���rl�����W��W���r�����������333f3�3�3�3333333f33�33�33�3f3f33ff3f�3f�3f�3�3�33�f3��3��3��3�3�33�f3��3��3��3�3�33�f3��3��3��ff3fff�f�f�f3f33f3ff3�f3�f3�ffff3fffff�ff�ff�f�f�3f�ff��f��f��f�f�3f�ff��f��f��f�f�3f�ff��f��f����3�f�������3�33�3f�3��3��3��f�f3�ff�f��f��f�����3��f�������������3��f�������������3��f�����������3�f�������3�33�3f�3��3��3��f�f3�ff�f��f��f�����3��f�������������3��f�������������3��f�����������3�f�������3�33�3f�3��3��3��f�f3�ff�f��f��f�����3��f�������������3��f�������������3��f���������8h	pHYs���o�dtEXtSoftwareGreenshot^UaIDATx^���C�@��e�4I���J[��Z�"-�P)�����{��	����>?����g���/8���j���4	�iV�$��IXM���&a5M�j���4	�iV�$��IXM���&a5M�j���4	�iV�$��IXM���&a5M�j���4	�iV� �]�~�|���T�FS��s@��r$�h����&��H�I��2hnt�$������@�<j/�f���5z����@�_��������`\���I���le����V�y�\�"!�@�k��Z����I���^qsu�P��=Z��$|�{�8���T����N�J@�&���0N;�h�W�9�!�/���&j��s3"�|�"��������:�W��7\��6�9������p���������q �r��a!�)��z��5��]P��X�9S�	�����B?�������rM4��\���#��>%*���	��	��9�UZ����5w�Y��nV)g����]�C�����y[9���Qr�4�%\����6��^mG����O�������t���r���FB��1D)c��A��p t�Mw���~E��{��	E��PV���e���Y�S�&L��s�Y�
�����}�j�o;����g|$8t����2]|G�6����LC��`��2��M�Sy^%�J���T��)a�d6�c"�#X�5������3�nP��������$����L�4I���5���.&�8��c��$���7A$�^���}��s��L[�?(CS�^��H`�F���f���!U�)��f���xh��9RU�I�y��bF������Q�<O>S���G|��m���t�cH�<\u�eI"�2M��V�"M �I*����sW�<Q���2c/���5���*���5�����D��Pz��Db������:�HM�e��!�i
�z�(L�&�����M(Fk�6�M�F��+�)@Sh3���_S�idD����&gM�j����	������'N��������R��e
yi�8Y��������GS��r�<4q��k�ar����0k������&�J�C	,���R��&j-C(�4�[��%pkM�����sKM�W��=1\�?2�']TQIEND�B`�
This is a simple d3.js tree diagram that loads an external data file as used as an example in the book [D3 Tips and Tricks](https://leanpub.com/D3-Tips-and-Tricks).

It is derived from the Mike Bostock [Collapsible tree example](http://bl.ocks.org/mbostock/4339083) but it is a VERY cut down version without the ability to update (collapse).
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">

    <title>Collapsible Tree Example</title>

    <style>

	.node circle {
	  fill: #fff;
	  stroke: steelblue;
	  stroke-width: 3px;
	}

	.node text { font: 12px sans-serif; }

	.link {
	  fill: none;
	  stroke: #ccc;
	  stroke-width: 2px;
	}
	
    </style>

  </head>

  <body>

<!-- load the d3.js library -->	
<script src="http://d3js.org/d3.v3.min.js"></script>
	
<script>

// ************** Generate the tree diagram	 *****************
var margin = {top: 20, right: 120, bottom: 20, left: 120},
	width = 960 - margin.right - margin.left,
	height = 500 - margin.top - margin.bottom;
	
var i = 0;

var tree = d3.layout.tree()
	.size([height, width]);

var diagonal = d3.svg.diagonal()
	.projection(function(d) { return [d.y, d.x]; });

var svg = d3.select("body").append("svg")
	.attr("width", width + margin.right + margin.left)
	.attr("height", height + margin.top + margin.bottom)
  .append("g")
	.attr("transform", "translate(" + margin.left + "," + margin.top + ")");

// load the external data
d3.json("treeData.json", function(error, treeData) {
  root = treeData[0];
  update(root);
});

function update(source) {

  // Compute the new tree layout.
  var nodes = tree.nodes(root).reverse(),
	  links = tree.links(nodes);

  // Normalize for fixed-depth.
  nodes.forEach(function(d) { d.y = d.depth * 180; });

  // Declare the nodes…
  var node = svg.selectAll("g.node")
	  .data(nodes, function(d) { return d.id || (d.id = ++i); });

  // Enter the nodes.
  var nodeEnter = node.enter().append("g")
	  .attr("class", "node")
	  .attr("transform", function(d) { 
		  return "translate(" + d.y + "," + d.x + ")"; });

  nodeEnter.append("circle")
	  .attr("r", 10)
	  .style("fill", "#fff");

  nodeEnter.append("text")
	  .attr("x", function(d) { 
		  return d.children || d._children ? -13 : 13; })
	  .attr("dy", ".35em")
	  .attr("text-anchor", function(d) { 
		  return d.children || d._children ? "end" : "start"; })
	  .text(function(d) { return d.name; })
	  .style("fill-opacity", 1);

  // Declare the links…
  var link = svg.selectAll("path.link")
	  .data(links, function(d) { return d.target.id; });

  // Enter the links.
  link.enter().insert("path", "g")
	  .attr("class", "link")
	  .attr("d", diagonal);

}

</script>
	
  </body>
</html>

以上是关于html 从外部(JSON)数据生成的D3.js树图的主要内容,如果未能解决你的问题,请参考以下文章

从 CSV 数据创建 D3.js 可折叠树

在 d3.js 中导入 json 文件

d3.js & json - 简单的示例代码?

将 ctree 输出转换为 JSON 格式(用于 D3 树布局)

在D3.js处理的JSON数据中使用HTML标记

D3.js的V5版本-Vue框架中使用-树状图