| 123456789101112 |
- import { ReactPanelPlugin } from '@grafana/ui';
- import { BarGaugePanel } from './BarGaugePanel';
- import { BarGaugePanelEditor } from './BarGaugePanelEditor';
- import { BarGaugeOptions, defaults } from './types';
- import { singleStatBaseOptionsCheck } from '../singlestat2/module';
- export const reactPanel = new ReactPanelPlugin<BarGaugeOptions>(BarGaugePanel);
- reactPanel.setEditor(BarGaugePanelEditor);
- reactPanel.setDefaults(defaults);
- reactPanel.setPanelTypeChangedHook(singleStatBaseOptionsCheck);
|