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();
}