class SubPlot extends Plot.Mark {
render({ fx, fy }, _scales, _channels, dimensions) {
return htl.svg`<g>${Plot.plot({
...dimensions,
insetTop: fx === fy ? 20 : 6,
insetBottom: fx === fy ? 0 : 6,
inset: 6,
axis: null,
nice: true,
color: color.scale("color"),
marks: [
fx === fy
? [
Plot.auto(data, { x: fx, color: { value: colorBy } }),
Plot.text([fx], {
frameAnchor: "top",
fontWeight: "bold",
dy: 5
})
]
: [
Plot.gridX({ ticks: 5 }),
Plot.gridY({ ticks: 7 }),
Plot.auto(data, { x: fx, y: fy, color: { value: colorBy } })
],
fx === fields[0] && fy !== fx
? [
Plot.dotY(data, { y: fy, filter: [] }),
Plot.axisY({ ticks: 7, label: null, anchor: "left" })
]
: null,
fx === fields[fields.length - 1] && fy !== fx
? [
Plot.dotY(data, { y: fy, filter: [] }),
Plot.axisY({ ticks: 7, label: null, anchor: "right" })
]
: null,
fy === fields[fields.length - 1]
? [
Plot.dotX(data, { x: fx, filter: [] }),
Plot.axisX({ ticks: 5, anchor: "bottom", labelAnchor: "center" })
]
: null
]
})}`;
}
}