this is my result and code from this tutorial https://hashnode.com/post/radar-charts-with-d3js-ckiijv82n00dqm5s184e6acpy
const drawPath = (
points: [number, number][],
parent: d3.Selection<SVGGElement, unknown, HTMLElement, any>
) => {
const lineGenerator = d3
.line()
.x((d) => d[0])
.y((d) => d[1]);
parent
.append("path")
.attr("d", lineGenerator(points) as string)
.attr("stroke-linejoin", "round");
};
you see i have used stroke-linejoin but it seems to not work?
what i want to achieve is something like this:

i am aware of curve function under line that i use but i cannot seem to get the right argument:
d3
.line()
.curve
any tips would be much appreciated
