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