mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
13 lines
181 B
CUE
13 lines
181 B
CUE
|
package panels
|
||
|
|
||
|
gridPos: {
|
||
|
// Panel height.
|
||
|
h: int & >0 | *9
|
||
|
// Panel width.
|
||
|
w: int & >0 <= 24 | 12
|
||
|
// Panel x position.
|
||
|
x: int & >0 < 24
|
||
|
// Panel y position.
|
||
|
y: int & >0
|
||
|
}
|