UNPKG

3d-force-graph

Version:

UI component for a 3D force-directed graph using ThreeJS and ngraph.forcelayout3d layout engine

18 lines (15 loc) 412 B
<head> <style> body { margin: 0; } </style> <script src="//unpkg.com/3d-force-graph"></script> <!--<script src="../../dist/3d-force-graph.js"></script>--> </head> <body> <div id="3d-graph"></div> <script> const Graph = ForceGraph3D() (document.getElementById('3d-graph')) .jsonUrl('./miserables.json') .nodeLabel('id') .nodeAutoColorBy('group'); </script> </body>