mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* 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>
25 lines
610 B
CUE
25 lines
610 B
CUE
package panels
|
|
|
|
panel: {
|
|
// Panel title.
|
|
title?: string
|
|
// Description.
|
|
description?: string
|
|
// Whether to display the panel without a background.
|
|
transparent: bool | *false
|
|
// Name of default datasource.
|
|
datasource?: string
|
|
// Grid position.
|
|
gridPos?: gridPos
|
|
// Panel links.
|
|
links?: [...panelLink]
|
|
// Name of template variable to repeat for.
|
|
repeat?: string
|
|
// Direction to repeat in if 'repeat' is set.
|
|
// "h" for horizontal, "v" for vertical.
|
|
repeatDirection: *"h" | "v"
|
|
// Panel targets - datasource and query configurations to use as
|
|
// a basis for vizualization.
|
|
targets?: [...{}]
|
|
}
|