BarGaugeMigrations.ts 286 B

123456
  1. import { PanelModel, sharedSingleStatMigrationHandler } from '@grafana/ui';
  2. import { BarGaugeOptions } from './types';
  3. export const barGaugePanelMigrationHandler = (panel: PanelModel<BarGaugeOptions>): Partial<BarGaugeOptions> => {
  4. return sharedSingleStatMigrationHandler(panel);
  5. };