File size: 270 Bytes
313c51c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import * as Plot from "npm:@observablehq/plot";
export function tree(tags, {width, height} = {}) {
return Plot.plot({
axis: null,
width,
height,
margin: 10,
marginLeft: 40,
marginRight: 120,
marks: [
Plot.tree(tags, {textStroke: "white"})
]
});
}
|