Public
Edited
Mar 3
Paused
2 forks
Importers
10 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
{
const w = width, h = w * .6, mx = w/2 * margin, my = h/2 * margin;
const path = gridPath(count, count, w - mx * 2, h - my * 2, false);
return htl.svg`<svg width=${w} height=${h}>
<path stroke=#555 d="M${mx},${my}${path}" />
`;
}
Insert cell
function gridPath(cols, rows, width = 1, height = 1, initPosition = true) {
// Line distances.
const sx = width / cols, sy = height / rows;
// Horizontal and vertical path segments, joined by relative move commands.
const px = Array(rows+1).fill(`h${width}`).join(`m${-width},${sy}`);
const py = Array(cols+1).fill(`v${height}`).join(`m${sx},${-height}`);
// Paths require an initial move command. It can be set either by this function
// or prepended to the returned path.
return `${initPosition ? 'M0,0' : ''}${px}m${-width}${-height}${py}`;
}
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more