index.html 422 B

123456789101112131415161718
  1. <head>
  2. <style> body { margin: 0; } </style>
  3. <script src="//unpkg.com/3d-force-graph"></script>
  4. <!--<script src="../../dist/3d-force-graph.js"></script>-->
  5. </head>
  6. <body>
  7. <div id="3d-graph"></div>
  8. <script>
  9. const Graph = ForceGraph3D()
  10. (document.getElementById('3d-graph'))
  11. .jsonUrl('../datasets/miserables.json')
  12. .nodeLabel('id')
  13. .nodeAutoColorBy('group');
  14. </script>
  15. </body>