{
const nodes = vl
.markCircle({ tooltip: true, size: 100 })
.encode(
vl
.x()
.fieldQ("x")
.axis(false),
vl
.y()
.fieldQ("y")
.scale({ reverse: true })
.axis(false)
)
.data(stripedTreeData);
const link = vl
.markRule({ tooltip: true, stroke: "#ccc" })
.encode(
vl
.x()
.fieldQ("source.x")
.axis(false),
vl.x2().field("target.x"),
vl
.y()
.fieldQ("source.y")
.scale({ reverse: true })
.axis(false),
vl.y2().field("target.y")
)
.data(stripedLinksTreeData);
return vl
.layer(link, nodes)
.width(width)
.render();
}