Interface GrafanaDashboardPanelConfig

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

Properties

Properties

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