| 1234567891011 |
- import { PanelPlugin, sharedSingleStatPanelChangedHandler } from '@grafana/ui';
- import { BarGaugePanel } from './BarGaugePanel';
- import { BarGaugePanelEditor } from './BarGaugePanelEditor';
- import { BarGaugeOptions, defaults } from './types';
- import { barGaugePanelMigrationHandler } from './BarGaugeMigrations';
- export const plugin = new PanelPlugin<BarGaugeOptions>(BarGaugePanel)
- .setDefaults(defaults)
- .setEditor(BarGaugePanelEditor)
- .setPanelChangeHandler(sharedSingleStatPanelChangedHandler)
- .setMigrationHandler(barGaugePanelMigrationHandler);
|