@grafana/ui
Version:
Grafana Components Library
16 lines (15 loc) • 618 B
TypeScript
import { FieldDisplay, Threshold } from '@grafana/data';
import { RadialColorDefs } from './RadialColorDefs';
import { GaugeDimensions } from './utils';
export interface Props {
dimensions: GaugeDimensions;
angleRange: number;
startAngle: number;
endAngle: number;
fieldDisplay: FieldDisplay;
roundedBars?: boolean;
glowFilter?: string;
colorDefs: RadialColorDefs;
thresholds: Threshold[];
}
export declare function ThresholdsBar({ dimensions, fieldDisplay, startAngle, angleRange, roundedBars, glowFilter, colorDefs, thresholds, }: Props): import("react/jsx-runtime").JSX.Element;