grafana/dashboard-schemas/panels/gridPos.cue
Chris Trott a6eebc22e8
Dashboard Schemas (#28793)
* cue mod init github.com/grafana/grafana/dashboard-schemas

* dashboard-schemas: Document exporting to OpenAPI

Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>

Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
2020-11-24 08:54:34 +01:00

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
}