mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
151 lines
3.8 KiB
TypeScript
Executable File
151 lines
3.8 KiB
TypeScript
Executable File
import {
|
|
DataFrame,
|
|
FieldColorModeId,
|
|
FieldConfigProperty,
|
|
FieldType,
|
|
PanelPlugin,
|
|
VizOrientation,
|
|
} from '@grafana/data';
|
|
import { BarChartPanel } from './BarChartPanel';
|
|
import {
|
|
BarChartFieldConfig,
|
|
BarChartOptions,
|
|
BarStackingMode,
|
|
BarValueVisibility,
|
|
graphFieldOptions,
|
|
} from '@grafana/ui';
|
|
import { addAxisConfig, addHideFrom, addLegendOptions } from '../timeseries/config';
|
|
import { defaultBarChartFieldConfig } from '@grafana/ui/src/components/BarChart/types';
|
|
|
|
export const plugin = new PanelPlugin<BarChartOptions, BarChartFieldConfig>(BarChartPanel)
|
|
.useFieldConfig({
|
|
standardOptions: {
|
|
[FieldConfigProperty.Color]: {
|
|
settings: {
|
|
byValueSupport: false,
|
|
},
|
|
defaultValue: {
|
|
mode: FieldColorModeId.PaletteClassic,
|
|
},
|
|
},
|
|
},
|
|
useCustomConfig: (builder) => {
|
|
const cfg = defaultBarChartFieldConfig;
|
|
|
|
builder
|
|
.addSliderInput({
|
|
path: 'lineWidth',
|
|
name: 'Line width',
|
|
defaultValue: cfg.lineWidth,
|
|
settings: {
|
|
min: 0,
|
|
max: 10,
|
|
step: 1,
|
|
},
|
|
})
|
|
.addSliderInput({
|
|
path: 'fillOpacity',
|
|
name: 'Fill opacity',
|
|
defaultValue: cfg.fillOpacity,
|
|
settings: {
|
|
min: 0,
|
|
max: 100,
|
|
step: 1,
|
|
},
|
|
})
|
|
.addRadio({
|
|
path: 'gradientMode',
|
|
name: 'Gradient mode',
|
|
defaultValue: graphFieldOptions.fillGradient[0].value,
|
|
settings: {
|
|
options: graphFieldOptions.fillGradient,
|
|
},
|
|
});
|
|
|
|
addAxisConfig(builder, cfg, true);
|
|
addHideFrom(builder);
|
|
},
|
|
})
|
|
.setPanelOptions((builder) => {
|
|
builder
|
|
.addRadio({
|
|
path: 'orientation',
|
|
name: 'Orientation',
|
|
settings: {
|
|
options: [
|
|
{ value: VizOrientation.Auto, label: 'Auto' },
|
|
{ value: VizOrientation.Horizontal, label: 'Horizontal' },
|
|
{ value: VizOrientation.Vertical, label: 'Vertical' },
|
|
],
|
|
},
|
|
defaultValue: VizOrientation.Auto,
|
|
})
|
|
.addRadio({
|
|
path: 'stacking',
|
|
name: 'Stacking',
|
|
settings: {
|
|
options: [
|
|
{ value: BarStackingMode.None, label: 'None' },
|
|
{ value: BarStackingMode.Standard, label: 'Standard' },
|
|
{ value: BarStackingMode.Percent, label: 'Percent' },
|
|
],
|
|
},
|
|
defaultValue: BarStackingMode.None,
|
|
showIf: () => false, // <<< Hide from the UI for now
|
|
})
|
|
.addRadio({
|
|
path: 'showValue',
|
|
name: 'Show values',
|
|
settings: {
|
|
options: [
|
|
{ value: BarValueVisibility.Auto, label: 'Auto' },
|
|
{ value: BarValueVisibility.Always, label: 'Always' },
|
|
{ value: BarValueVisibility.Never, label: 'Never' },
|
|
],
|
|
},
|
|
defaultValue: BarValueVisibility.Auto,
|
|
})
|
|
.addSliderInput({
|
|
path: 'groupWidth',
|
|
name: 'Group width',
|
|
defaultValue: 0.7,
|
|
settings: {
|
|
min: 0,
|
|
max: 1,
|
|
step: 0.01,
|
|
},
|
|
showIf: (c, data) => {
|
|
if (c.stacking && c.stacking !== BarStackingMode.None) {
|
|
return false;
|
|
}
|
|
return countNumberFields(data) !== 1;
|
|
},
|
|
})
|
|
.addSliderInput({
|
|
path: 'barWidth',
|
|
name: 'Bar width',
|
|
defaultValue: 0.97,
|
|
settings: {
|
|
min: 0,
|
|
max: 1,
|
|
step: 0.01,
|
|
},
|
|
});
|
|
|
|
addLegendOptions(builder);
|
|
});
|
|
|
|
function countNumberFields(data?: DataFrame[]): number {
|
|
let count = 0;
|
|
if (data) {
|
|
for (const frame of data) {
|
|
for (const field of frame.fields) {
|
|
if (field.type === FieldType.number) {
|
|
count++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return count;
|
|
}
|