mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06: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
34 lines
1.2 KiB
TypeScript
34 lines
1.2 KiB
TypeScript
import { commonOptionsBuilder, sharedSingleStatPanelChangedHandler } from '@grafana/ui';
|
|
import { PanelPlugin } from '@grafana/data';
|
|
import { BarGaugePanel } from './BarGaugePanel';
|
|
import { BarGaugeOptions, displayModes } from './types';
|
|
import { addOrientationOption, addStandardDataReduceOptions } from '../stat/types';
|
|
import { barGaugePanelMigrationHandler } from './BarGaugeMigrations';
|
|
|
|
export const plugin = new PanelPlugin<BarGaugeOptions>(BarGaugePanel)
|
|
.useFieldConfig()
|
|
.setPanelOptions((builder) => {
|
|
addStandardDataReduceOptions(builder);
|
|
addOrientationOption(builder);
|
|
commonOptionsBuilder.addTextSizeOptions(builder);
|
|
|
|
builder
|
|
.addRadio({
|
|
path: 'displayMode',
|
|
name: 'Display mode',
|
|
settings: {
|
|
options: displayModes,
|
|
},
|
|
defaultValue: 'gradient',
|
|
})
|
|
.addBooleanSwitch({
|
|
path: 'showUnfilled',
|
|
name: 'Show unfilled area',
|
|
description: 'When enabled renders the unfilled region as gray',
|
|
defaultValue: true,
|
|
showIf: (options: BarGaugeOptions) => options.displayMode !== 'lcd',
|
|
});
|
|
})
|
|
.setPanelChangeHandler(sharedSingleStatPanelChangedHandler)
|
|
.setMigrationHandler(barGaugePanelMigrationHandler);
|