gridstack_column
Change the number of columns in dynamic dashboard layouts to adjust widget positioning and grid structure for responsive design.
Instructions
Change the number of columns
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| column | Yes | Number of columns or 'auto' | |
| layout | No | How to re-layout widgets | moveScale |
Input Schema (JSON Schema)
{
"properties": {
"column": {
"description": "Number of columns or 'auto'",
"oneOf": [
{
"type": "number"
},
{
"enum": [
"auto"
],
"type": "string"
}
]
},
"layout": {
"default": "moveScale",
"description": "How to re-layout widgets",
"enum": [
"moveScale",
"move",
"scale",
"none",
"list"
],
"type": "string"
}
},
"required": [
"column"
],
"type": "object"
}