18 lines
No EOL
422 B
HTML
Executable file
18 lines
No EOL
422 B
HTML
Executable file
<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({ controlType: 'orbit' })
|
|
(document.getElementById('3d-graph'))
|
|
.jsonUrl('../datasets/miserables.json')
|
|
.nodeLabel('id')
|
|
.nodeAutoColorBy('group');
|
|
</script>
|
|
</body> |