| 12345678910 |
- import { PanelPlugin, sharedSingleStatMigrationCheck, sharedSingleStatOptionsCheck } from '@grafana/ui';
- import { GaugePanelEditor } from './GaugePanelEditor';
- import { GaugePanel } from './GaugePanel';
- import { GaugeOptions, defaults } from './types';
- export const plugin = new PanelPlugin<GaugeOptions>(GaugePanel)
- .setDefaults(defaults)
- .setEditor(GaugePanelEditor)
- .setPanelChangeHandler(sharedSingleStatOptionsCheck)
- .setMigrationHandler(sharedSingleStatMigrationCheck);
|