gridstack_resize_widget
Resize dashboard widgets by specifying new width in columns and height in rows. Modify widget dimensions to optimize dashboard layouts and improve visual organization.
Instructions
Resize a widget
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| el | Yes | Widget selector or ID to resize | |
| width | No | New width in columns | |
| height | No | New height in rows |
Input Schema (JSON Schema)
{
"properties": {
"el": {
"description": "Widget selector or ID to resize",
"type": "string"
},
"height": {
"description": "New height in rows",
"type": "number"
},
"width": {
"description": "New width in columns",
"type": "number"
}
},
"required": [
"el"
],
"type": "object"
}