Public
Edited
Dec 29, 2023
Fork of Untitled
Insert cell
Insert cell
Insert cell
<div id="grf" ><svg id="svg" height="0" width="0">
<defs>
</defs>
</svg></div>
Insert cell
Insert cell
Insert cell
pieChartRender = {
let graph = d3.select("#grf").node();
const pie = d3
.pie()
.sort(null)
.value(function (d) {
return d.occurences;
});

const pie2 = d3
.pie()
.sort(null)
.value(function (d) {
return d.occurences;
})
.padAngle(0.0);

const margin = { top: 20, right: 200, bottom: 20, left: 200 };
const imgWidth = 200;
const width = 300,
height = 300,
radius = imgWidth / 2;
const arc = d3
.arc()
.outerRadius(radius - 10)
.innerRadius(1);

const outArc = d3
.arc()
.outerRadius(radius + 60)
.innerRadius(0);

d3.select(graph)
.select("#svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.selectAll("g")
.data(["svg"])
.enter()
.append("g")
.attr("class", "graphArea")
.attr("transform", `translate(${imgWidth / 2},${imgWidth / 2})`);

let clips = d3
.select(graph)
.select("#svg")
.select("defs")
.selectAll("clipPath")
.data(pie(data));

clips
.enter()
.append("clipPath")
.each(function () {
d3.select(this).append("path");
})
.merge(clips)
.attr("id", (d, i) => "clippy" + i)
.each(function (d) {
d3.select(this)
.select("path")
.attr("d", arc(d))
.style("transform", `translate(${imgWidth / 2}px,${imgWidth / 2}px)`);
});
clips.exit().remove();
let imgsss = d3.select(graph).select("svg").selectAll("image").data(data);
imgsss
.enter()
.append("image")
.merge(imgsss)
.style("clip-path", (d, i) => `url(#clippy${i})`)
.attr("xlink:href", (d) => d.img.src)
.attr("width", imgWidth)
.attr("height", imgWidth);
imgsss.exit().remove();

let arcos = d3
.select(graph)
.select("#svg")
.select(".graphArea")
.selectAll("path")
.data(pie(data));
arcos
.enter()
.append("path")
.merge(arcos)
.attr("d", (d) => arc({ startAngle: d.startAngle, endAngle: d.startAngle }))
.attr("fill", "none")
.attr("stroke", "grey");
d3.select(graph).select(".graphArea").raise();
arcos.exit().remove();
/*

<image
xlink:href="/files/2917/fxlogo.png"
x="0"
y="0"
height="100"
width="100" />
<clipPath id="svgPath">
<path fill="#FFFFFF" stroke="#000000" stroke-width="1.5794" stroke-miterlimit="10" d="M215,100.3c97.8-32.6,90.5-71.9,336-77.6
c92.4-2.1,98.1,81.6,121.8,116.4c101.7,149.9,53.5,155.9,14.7,178c-96.4,54.9,5.4,269-257,115.1c-57-33.5-203,46.3-263.7,20.1
c-33.5-14.5-132.5-45.5-95-111.1C125.9,246.6,98.6,139.1,215,100.3z"/>
</clipPath>*/
}
Insert cell
dataP = [1, 6, 12]
Insert cell
t = FileAttachment("image@1.png").image()
Insert cell
t.src
Insert cell
t2 = FileAttachment("image@2.png").image()
Insert cell
t.width
Insert cell
t3 = FileAttachment("image@3.png").image()
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