FLUJOS/VISUALIZACION/node_modules/3d-force-graph/example/fix-dragged-nodes/index.html
2025-11-07 00:06:12 +01:00

23 lines
No EOL
550 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()
(document.getElementById('3d-graph'))
.jsonUrl('../datasets/miserables.json')
.nodeLabel('id')
.nodeAutoColorBy('group')
.onNodeDragEnd(node => {
node.fx = node.x;
node.fy = node.y;
node.fz = node.z;
});
</script>
</body>