gridstack_set_responsive
Configure responsive breakpoints for GridStack layouts to adapt grid columns based on window width, enabling responsive dashboard designs that adjust to different screen sizes.
Instructions
Configure responsive breakpoints
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| breakpoints | Yes | Array of breakpoint configurations |
Input Schema (JSON Schema)
{
"properties": {
"breakpoints": {
"description": "Array of breakpoint configurations",
"items": {
"properties": {
"c": {
"description": "Number of columns at this breakpoint",
"type": "number"
},
"w": {
"description": "Window width breakpoint",
"type": "number"
}
},
"required": [
"w",
"c"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"breakpoints"
],
"type": "object"
}