Published unlisted
Edited
May 28, 2020
Insert cell
Insert cell
import { d3, chart } from "@d3/histogram"
Insert cell
chart
Insert cell
d3
.select(chart)
.selectAll('circle')
.data([{ x: 100, y: 100, r: 100 }])
.join('circle')
.attr('cx', d => d.x)
.attr('cy', d => d.y)
.attr('r', d => d.r)
.attr('fill', 'red')
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more