mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
105 lines
2.8 KiB
TypeScript
105 lines
2.8 KiB
TypeScript
// Code generated - EDITING IS FUTILE. DO NOT EDIT.
|
|
//
|
|
// Generated by:
|
|
// public/app/plugins/gen.go
|
|
// Using jennies:
|
|
// TSTypesJenny
|
|
// PluginTSTypesJenny
|
|
//
|
|
// Run 'make gen-cue' from repository root to regenerate.
|
|
|
|
import * as common from '@grafana/schema';
|
|
|
|
export const PanelCfgModelVersion = Object.freeze([0, 0]);
|
|
|
|
export interface PanelOptions extends common.OptionsWithLegend, common.OptionsWithTooltip, common.OptionsWithTextFormatting {
|
|
/**
|
|
* Controls the radius of each bar.
|
|
*/
|
|
barRadius?: number;
|
|
/**
|
|
* Controls the width of bars. 1 = Max width, 0 = Min width.
|
|
*/
|
|
barWidth: number;
|
|
/**
|
|
* Use the color value for a sibling field to color each bar value.
|
|
*/
|
|
colorByField?: string;
|
|
/**
|
|
* Enables mode which highlights the entire bar area and shows tooltip when cursor
|
|
* hovers over highlighted area
|
|
*/
|
|
fullHighlight: boolean;
|
|
/**
|
|
* Controls the width of groups. 1 = max with, 0 = min width.
|
|
*/
|
|
groupWidth: number;
|
|
/**
|
|
* Controls the orientation of the bar chart, either vertical or horizontal.
|
|
*/
|
|
orientation: common.VizOrientation;
|
|
/**
|
|
* This controls whether values are shown on top or to the left of bars.
|
|
*/
|
|
showValue: common.VisibilityMode;
|
|
/**
|
|
* Controls whether bars are stacked or not, either normally or in percent mode.
|
|
*/
|
|
stacking: common.StackingMode;
|
|
/**
|
|
* Manually select which field from the dataset to represent the x field.
|
|
*/
|
|
xField?: string;
|
|
/**
|
|
* Sets the max length that a label can have before it is truncated.
|
|
*/
|
|
xTickLabelMaxLength: number;
|
|
/**
|
|
* Controls the rotation of the x axis labels.
|
|
*/
|
|
xTickLabelRotation: number;
|
|
/**
|
|
* Controls the spacing between x axis labels.
|
|
* negative values indicate backwards skipping behavior
|
|
*/
|
|
xTickLabelSpacing?: number;
|
|
}
|
|
|
|
export const defaultPanelOptions: Partial<PanelOptions> = {
|
|
barRadius: 0,
|
|
barWidth: 0.97,
|
|
fullHighlight: false,
|
|
groupWidth: 0.7,
|
|
orientation: common.VizOrientation.Auto,
|
|
showValue: common.VisibilityMode.Auto,
|
|
stacking: common.StackingMode.None,
|
|
xTickLabelRotation: 0,
|
|
xTickLabelSpacing: 0,
|
|
};
|
|
|
|
export interface PanelFieldConfig extends common.AxisConfig, common.HideableFieldConfig {
|
|
/**
|
|
* Controls the fill opacity of the bars.
|
|
*/
|
|
fillOpacity?: number;
|
|
/**
|
|
* Set the mode of the gradient fill. Fill gradient is based on the line color. To change the color, use the standard color scheme field option.
|
|
* Gradient appearance is influenced by the Fill opacity setting.
|
|
*/
|
|
gradientMode?: common.GraphGradientMode;
|
|
/**
|
|
* Controls line width of the bars.
|
|
*/
|
|
lineWidth?: number;
|
|
/**
|
|
* Threshold rendering
|
|
*/
|
|
thresholdsStyle?: common.GraphThresholdsStyleConfig;
|
|
}
|
|
|
|
export const defaultPanelFieldConfig: Partial<PanelFieldConfig> = {
|
|
fillOpacity: 80,
|
|
gradientMode: common.GraphGradientMode.None,
|
|
lineWidth: 1,
|
|
};
|