Published
Edited
Dec 13, 2020
2 stars
Insert cell
md`# Simple Force Bubbles`
Insert cell
chart = {
const svg = d3.create("svg")
.attr("viewBox", [0, 0, width, height])
.style("max-width", width-margin.right-margin.left)
.style("margin", `${margin.top} ${margin.right}`)
.style("overflow", "visible");
const values = [0.5,0.75,1];
let nodes = d3.range(num).map( (i) => ({
radius: Math.floor(Math.random() * 20) + 5,
xValue: Math.random(),
yValue: Math.random(),
}) );
var simulation = d3.forceSimulation(nodes)
.force("charge", d3.forceManyBody().strength(0))
.force("center", d3.forceCenter(width / 2, height / 2))
.force("collision", d3.forceCollide().radius(d => d.radius))
.force("x", d3.forceX().x( (d) => xScale(d.xValue) ))
.force("y", d3.forceY().y( (d) => yScale(d.yValue) ))
simulation.on("tick", () => {
let item = svg
.attr("fill", "#e66300")
.attr("stroke", "#fff")
.attr("stroke-width", 1.5)
.selectAll("circle")
.data(nodes)
item.enter()
.append("circle")
.attr("r", (d) => d.radius)
.style("opacity", (d) => {
let random = Math.floor(Math.random() * values.length);
return values[random];
})
.merge(item)
.attr("cx", d => d.x)
.attr("cy", d => d.y)
})
return svg.node();
}
Insert cell
xScale = d3.scaleLinear().domain([0, 1]).range([0, width])
Insert cell
yScale = d3.scaleLinear().domain([0, 1]).range([height, 0])
Insert cell
num = 200
Insert cell
height = 300
Insert cell
margin = ({top: 50, right: 20, bottom: 50, left: 120})
Insert cell
d3 = require("d3")
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