Gridset

Setup

import { Gridset } from 'gridset';
const grid = new Gridset({
  width: 250, // <-- width of the grid
  height: 250, // <-- height of the grid
  rows: 5, // <-- number of rows
  cols: 5, // <-- number of columns
});

Cell Width

const grid = new Gridset({
  width: 250,
  height: 250,
  rows: 5,
  cols: 5,
  cellWidth: 60 // <-- width of each cell
})

Cell Height

const grid = new Gridset({
width: 250,
height: 250,
rows: 5,
cols: 5,
cellHeight: 60 // <-- height of each cell
})