| 12345678910 |
- import { ReactPanelPlugin } from '@grafana/ui';
- import { GaugePanelEditor } from './GaugePanelEditor';
- import { GaugePanel } from './GaugePanel';
- import { GaugeOptions, defaults } from './types';
- export const reactPanel = new ReactPanelPlugin<GaugeOptions>(GaugePanel);
- reactPanel.setEditor(GaugePanelEditor);
- reactPanel.setDefaults(defaults);
|