mirror of
https://github.com/grafana/grafana.git
synced 2025-09-22 00:02:53 +08:00

* Bar chart label positioning and sizing * Dev dashbard * Improve autosizing * Remove sync option * Unify text sizing options between stat-ish visualizations and bar chart * Add simple categorical data scenario and update dev dashboard * Remove unused options builder * Add docs annotations * Fix go lint
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
import { PanelPlugin } from '@grafana/data';
|
|
import { GaugePanel } from './GaugePanel';
|
|
import { GaugeOptions } from './types';
|
|
import { addStandardDataReduceOptions } from '../stat/types';
|
|
import { gaugePanelMigrationHandler, gaugePanelChangedHandler } from './GaugeMigrations';
|
|
import { commonOptionsBuilder } from '@grafana/ui';
|
|
|
|
export const plugin = new PanelPlugin<GaugeOptions>(GaugePanel)
|
|
.useFieldConfig()
|
|
.setPanelOptions((builder) => {
|
|
addStandardDataReduceOptions(builder);
|
|
|
|
builder
|
|
.addBooleanSwitch({
|
|
path: 'showThresholdLabels',
|
|
name: 'Show threshold labels',
|
|
description: 'Render the threshold values around the gauge bar',
|
|
defaultValue: false,
|
|
})
|
|
.addBooleanSwitch({
|
|
path: 'showThresholdMarkers',
|
|
name: 'Show threshold markers',
|
|
description: 'Renders the thresholds as an outer bar',
|
|
defaultValue: true,
|
|
});
|
|
|
|
commonOptionsBuilder.addTextSizeOptions(builder);
|
|
})
|
|
.setPanelChangeHandler(gaugePanelChangedHandler)
|
|
.setMigrationHandler(gaugePanelMigrationHandler);
|