gridstack_cell_height
Adjust cell height in GridStack layouts using pixel values, 'auto', 'initial', or CSS units to customize dashboard grid dimensions and widget spacing.
Instructions
Update cell height
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| val | No | New cell height (px, 'auto', 'initial', CSS units) | |
| update | No | Update existing widgets |
Input Schema (JSON Schema)
{
"properties": {
"update": {
"default": true,
"description": "Update existing widgets",
"type": "boolean"
},
"val": {
"description": "New cell height (px, 'auto', 'initial', CSS units)",
"oneOf": [
{
"type": "number"
},
{
"type": "string"
}
]
}
},
"type": "object"
}