2022-05-26 20:21:37 -05:00
|
|
|
// This file is autogenerated. DO NOT EDIT.
|
|
|
|
//
|
2022-09-14 09:15:09 -05:00
|
|
|
// Generated by public/app/plugins/gen.go
|
|
|
|
//
|
|
|
|
// Derived from the Thema lineage declared in models.cue
|
|
|
|
//
|
|
|
|
// Run `make gen-cue` from repository root to regenerate.
|
|
|
|
|
2022-05-25 06:07:32 -05:00
|
|
|
|
|
|
|
import * as ui from '@grafana/schema';
|
|
|
|
|
2022-08-22 11:11:45 -05:00
|
|
|
export const PanelModelVersion = Object.freeze([0, 0]);
|
2022-05-25 06:07:32 -05:00
|
|
|
|
|
|
|
|
|
|
|
export interface PanelOptions extends ui.SingleStatBaseOptions {
|
|
|
|
colorMode: ui.BigValueColorMode;
|
|
|
|
graphMode: ui.BigValueGraphMode;
|
|
|
|
justifyMode: ui.BigValueJustifyMode;
|
|
|
|
textMode: ui.BigValueTextMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const defaultPanelOptions: Partial<PanelOptions> = {
|
|
|
|
colorMode: ui.BigValueColorMode.Value,
|
|
|
|
graphMode: ui.BigValueGraphMode.Area,
|
|
|
|
justifyMode: ui.BigValueJustifyMode.Auto,
|
|
|
|
textMode: ui.BigValueTextMode.Auto,
|
|
|
|
};
|
2022-09-14 09:15:09 -05:00
|
|
|
|