I have an atlasboard-based dashboard. The widgets have already the minimum possible height of "1" in the layout config, but they are still too tall. How or where can I configure gridster to reduce the size of my widgets? I'm looking for the widget_base_dimensions
of the gridster config object but I can't find it anywhere.
Asked
Active
Viewed 253 times
0

sebnukem
- 8,143
- 6
- 38
- 48
1 Answers
1
You could try defining gridSize in layout or increasing no of rows in gridSize then adjusting height for widget as required.
For eg:
"layout": {
"gridSize" : { "columns" : 25, "rows" : 25 },
"widgets": [{
"enabled": true,
"row": 1,
"col": 1,
"width": 5, --no of columns this widget will occupy
"height": 5, --no of rows this widget will occupy
}

nayakam
- 4,149
- 7
- 42
- 62
-
It's the first thing I've tried... `gridSize` doesn't seem to change anything. – sebnukem Jun 06 '16 at 13:21
-
What layout config details? – sebnukem Jun 08 '16 at 00:48
-
I could adjust my widget using gridSize config. layout config details in dashboards/*.json file – nayakam Jun 16 '16 at 12:13