Public
Edited
Nov 6, 2023
Fork of VENN DIAGRAM
1 fork
Insert cell
Insert cell
Insert cell
Insert cell
xAxis = (g) =>
g
.attr("class", "x-axis")
.attr("transform", `translate(0, ${height - margin.bottom})`)
.call(d3.axisBottom().scale(x).ticks(10).tickPadding(0))
Insert cell
yAxis = (g) =>
g
.attr("class", "y-axis")
.attr("transform", `translate(${width - margin.left},0)`)
.call(
d3
.axisRight()
.scale(y)
.tickValues([10, 20, 30, 40, 50, 60, 70, 80, 90, 100])
.tickSize(-width + margin.left + margin.right)
.tickPadding(5)
)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
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