You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
168 lines
4.6 KiB
168 lines
4.6 KiB
import {
|
|
DataFrame,
|
|
FieldColorModeId,
|
|
FieldConfigProperty,
|
|
FieldType,
|
|
PanelPlugin,
|
|
VizOrientation,
|
|
} from '@grafana/data';
|
|
import { BarChartPanel } from './BarChartPanel';
|
|
import { StackingMode, VisibilityMode } from '@grafana/schema';
|
|
import { graphFieldOptions, commonOptionsBuilder } from '@grafana/ui';
|
|
import { BarChartFieldConfig, BarChartOptions, defaultBarChartFieldConfig } from 'app/plugins/panel/barchart/types';
|
|
import { BarChartSuggestionsSupplier } from './suggestions';
|
|
|
|
export const plugin = new PanelPlugin<BarChartOptions, BarChartFieldConfig>(BarChartPanel)
|
|
.useFieldConfig({
|
|
standardOptions: {
|
|
[FieldConfigProperty.Color]: {
|
|
settings: {
|
|
byValueSupport: true,
|
|
preferThresholdsMode: 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,
|
|
},
|
|
});
|
|
|
|
commonOptionsBuilder.addAxisConfig(builder, cfg, true);
|
|
commonOptionsBuilder.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,
|
|
})
|
|
.addSliderInput({
|
|
path: 'xTickLabelRotation',
|
|
name: 'Rotate bar labels',
|
|
defaultValue: 0,
|
|
settings: {
|
|
min: -90,
|
|
max: 90,
|
|
step: 15,
|
|
marks: { '-90': '-90°', '-45': '-45°', 0: '0°', 45: '45°', 90: '90°' },
|
|
included: false,
|
|
},
|
|
showIf: (opts) => {
|
|
return opts.orientation === VizOrientation.Auto || opts.orientation === VizOrientation.Vertical;
|
|
},
|
|
})
|
|
.addNumberInput({
|
|
path: 'xTickLabelMaxLength',
|
|
name: 'Bar label max length',
|
|
description: 'Bar labels will be truncated to the length provided',
|
|
settings: {
|
|
placeholder: 'Auto',
|
|
min: 0,
|
|
},
|
|
})
|
|
.addRadio({
|
|
path: 'showValue',
|
|
name: 'Show values',
|
|
settings: {
|
|
options: [
|
|
{ value: VisibilityMode.Auto, label: 'Auto' },
|
|
{ value: VisibilityMode.Always, label: 'Always' },
|
|
{ value: VisibilityMode.Never, label: 'Never' },
|
|
],
|
|
},
|
|
defaultValue: VisibilityMode.Auto,
|
|
})
|
|
.addRadio({
|
|
path: 'stacking',
|
|
name: 'Stacking',
|
|
settings: {
|
|
options: graphFieldOptions.stacking,
|
|
},
|
|
defaultValue: StackingMode.None,
|
|
})
|
|
.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 !== StackingMode.None) {
|
|
return false;
|
|
}
|
|
return countNumberFields(data) !== 1;
|
|
},
|
|
})
|
|
.addSliderInput({
|
|
path: 'barWidth',
|
|
name: 'Bar width',
|
|
defaultValue: 0.97,
|
|
settings: {
|
|
min: 0,
|
|
max: 1,
|
|
step: 0.01,
|
|
},
|
|
});
|
|
|
|
commonOptionsBuilder.addTooltipOptions(builder);
|
|
commonOptionsBuilder.addLegendOptions(builder);
|
|
commonOptionsBuilder.addTextSizeOptions(builder, false);
|
|
})
|
|
.setSuggestionsSupplier(new BarChartSuggestionsSupplier());
|
|
|
|
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;
|
|
}
|
|
|