= FileAttachment("flare-2.json").json()
flareData
= flareData => {
partition const root = d3.hierarchy(flareData)
.sum(d => d.value)
.sort((a, b) => b.value - a.value);
return d3.partition()
.size([2 * Math.PI, root.height + 1])
root);
(
}
= d3.scaleOrdinal(
color .quantize(d3.interpolateRainbow, flareData.children.length + 1)
d3
)
= d3.format(",d")
format
= 932
width
= width / 6
radius
= d3.arc()
arc .startAngle(d => d.x0)
.endAngle(d => d.x1)
.padAngle(d => Math.min((d.x1 - d.x0) / 2, 0.005))
.padRadius(radius * 1.5)
.innerRadius(d => d.y0 * radius)
.outerRadius(d => Math.max(d.y0 * radius, d.y1 * radius - 1))
So I’ve migrated my sample to Quarto – which supports d3.js via Observable and without the need for whack hacks
= {
sunburst const root = partition(flareData);
root.each(d => d.current = d);
const svg = d3.create("svg")
.attr("viewBox", [0, 0, width, width])
.style("font", "15px sans-serif");
const g = svg.append("g")
.attr("transform", `translate(${width / 2},${width / 2})`);
const path = g.append("g")
.selectAll("path")
.data(root.descendants().slice(1))
.join("path")
.attr("fill", d => { while (d.depth > 1) d = d.parent; return color(d.data.name); })
.attr("fill-opacity", d => arcVisible(d.current) ? (d.children ? 0.6 : 0.4) : 0)
.attr("d", d => arc(d.current));
.filter(d => d.children)
path.style("cursor", "pointer")
.on("click", clicked);
.append("title")
path.text(d => `${d.ancestors().map(d => d.data.name).reverse().join("/")}\n${format(d.value)}`);
const label = g.append("g")
.attr("pointer-events", "none")
.attr("text-anchor", "middle")
.style("user-select", "none")
.selectAll("text")
.data(root.descendants().slice(1))
.join("text")
.attr("dy", "0.35em")
.attr("fill-opacity", d => +labelVisible(d.current))
.attr("transform", d => labelTransform(d.current))
.text(d => d.data.name);
const parent = g.append("circle")
.datum(root)
.attr("r", radius)
.attr("fill", "none")
.attr("pointer-events", "all")
.on("click", clicked);
function clicked(event, p) {
.datum(p.parent || root);
parent
root.each(d => d.target = {
x0: Math.max(0, Math.min(1, (d.x0 - p.x0) / (p.x1 - p.x0))) * 2 * Math.PI,
x1: Math.max(0, Math.min(1, (d.x1 - p.x0) / (p.x1 - p.x0))) * 2 * Math.PI,
y0: Math.max(0, d.y0 - p.depth),
y1: Math.max(0, d.y1 - p.depth)
;
})
const t = g.transition().duration(750);
// Transition the data on all arcs, even the ones that aren’t visible,
// so that if this transition is interrupted, entering arcs will start
// the next transition from the desired position.
.transition(t)
path.tween("data", d => {
const i = d3.interpolate(d.current, d.target);
return t => d.current = i(t);
}).filter(function(d) {
return +this.getAttribute("fill-opacity") || arcVisible(d.target);
}).attr("fill-opacity", d => arcVisible(d.target) ? (d.children ? 0.6 : 0.4) : 0)
.attrTween("d", d => () => arc(d.current));
.filter(function(d) {
labelreturn +this.getAttribute("fill-opacity") || labelVisible(d.target);
.transition(t)
}).attr("fill-opacity", d => +labelVisible(d.target))
.attrTween("transform", d => () => labelTransform(d.current));
}
function arcVisible(d) {
return d.y1 <= 3 && d.y0 >= 1 && d.x1 > d.x0;
}
function labelVisible(d) {
return d.y1 <= 3 && d.y0 >= 1 && (d.y1 - d.y0) * (d.x1 - d.x0) > 0.03;
}
function labelTransform(d) {
const x = (d.x0 + d.x1) / 2 * 180 / Math.PI;
const y = (d.y0 + d.y1) / 2 * radius;
return `rotate(${x - 90}) translate(${y},0) rotate(${x < 180 ? 0 : 180})`;
}
return svg.node();
}
Anyhow this demo is based on https://quarto.org/docs/interactive/ojs/examples/sunburst.html
Citation
BibTeX citation:
@online{bochman2024,
author = {Bochman, Oren},
title = {D3.js in in {Quarto} {Observable}},
date = {2024-01-02},
url = {https://orenbochman.github.io/posts/2024/2024-01-02-d3/2024-01-02-d3.js.html},
langid = {en}
}
For attribution, please cite this work as:
Bochman, Oren. 2024. “D3.js in in Quarto Observable.”
January 2, 2024. https://orenbochman.github.io/posts/2024/2024-01-02-d3/2024-01-02-d3.js.html.