Published
Edited
Jun 25, 2018
9 stars
Also listed in…
Visualizations
Insert cell
Insert cell
{
let elem = html`<div id="3d-graph" style='height:800px; width:800px' >test</div>`
// Random tree
const N = 300;
const gData = {
nodes: [...Array(N).keys()].map(i => ({ id: i })),
links: [...Array(N).keys()]
.filter(id => id)
.map(id => ({
source: id,
target: Math.round(Math.random() * (id-1))
}))
};

const distance = 1000;

const Graph = ForceGraph3D()
(elem)
.enableNodeDrag(false)
.enableNavigationControls(false)
.showNavInfo(false)
.cameraPosition({ z: distance })
.graphData(gData);

// camera orbit
let angle = 0;
setInterval(() => {
Graph.cameraPosition({
x: distance * Math.sin(angle),
z: distance * Math.cos(angle)
});
angle += Math.PI / 300;
}, 10);
return elem
}
Insert cell
ForceGraph3D = require('https://unpkg.com/3d-force-graph@1.35.3/dist/3d-force-graph.min.js')
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more