Plot.plot({
marks: [
Plot.link(nodes, {
x1: "x",
y1: "y",
x2: d => d.parent.data.name ? d.parent.x : d.x,
y2: d => d.parent.data.name ? d.parent.y : d.y,
stroke: "#eee",
}),
Plot.dot(nodes, { x: "x", y: "y", fill: "rootId", r: 3 }),
Plot.text(nodes, {
x: "x",
y: "y",
text: (d) => d.data.name,
textAnchor: "start",
rotate: 90,
dx: 5,
fill: "rootId",
fontSize: 12
})
],
x: { axis: false },
y: { axis: false, reverse: true },
width: 1250,
marginBottom: 180,
height: 420,
inset: 20,
})