cellLimit
cellLimit
is an object within the theme property for limiting the number of cells shown with in a dashboard row.
cellLimit
does not hide existing cells, it prevents new cell from being added via the 'Add Cell to Row' button.
Default Value
import Vizzly, { type VizzlyTheming } from "@vizzly/dashboard"
export function Dashboard() {
const theme: VizzlyTheming.Base = {
// Default Value
cellLimit: 4,
}
return (
<Vizzly.Dashboard
// ...
theme={theme}
/>
)
}