Interface GrafanaDashboardPanelConfig

Hierarchy

  • GrafanaDashboardPanelConfig

Properties

Properties

fieldConfig: {
    defaults: {
        custom: {
            thresholdsStyle: {
                mode: string;
            };
        };
        thresholds: {
            mode: "absolute" | "relative";
            steps: {
                color: string;
                value: null | number;
            }[];
        };
    };
}

Type declaration

  • defaults: {
        custom: {
            thresholdsStyle: {
                mode: string;
            };
        };
        thresholds: {
            mode: "absolute" | "relative";
            steps: {
                color: string;
                value: null | number;
            }[];
        };
    }
    • custom: {
          thresholdsStyle: {
              mode: string;
          };
      }
      • thresholdsStyle: {
            mode: string;
        }
        • mode: string
    • thresholds: {
          mode: "absolute" | "relative";
          steps: {
              color: string;
              value: null | number;
          }[];
      }
      • mode: "absolute" | "relative"
      • steps: {
            color: string;
            value: null | number;
        }[]

Generated using TypeDoc