gridstack_compact
Optimize dashboard layouts by compacting grid widgets to reduce empty space and improve visual organization. Choose from multiple compaction methods including move, scale, or combined approaches to create efficient widget arrangements.
Instructions
Compact the grid layout
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| layout | No | Compact layout type | moveScale |
| doSort | No | Sort widgets before compacting |
Input Schema (JSON Schema)
{
"properties": {
"doSort": {
"default": true,
"description": "Sort widgets before compacting",
"type": "boolean"
},
"layout": {
"default": "moveScale",
"description": "Compact layout type",
"enum": [
"moveScale",
"move",
"scale",
"none",
"list"
],
"type": "string"
}
},
"type": "object"
}