Schema: export existing types in @grafana/data|ui (#38518)

This commit is contained in:
Ryan McKinley
2021-08-25 09:59:03 -07:00
committed by GitHub
parent 76ade24f2f
commit 9267014a45
20 changed files with 130 additions and 77 deletions

View File

@@ -16,7 +16,7 @@ export enum PointVisibility {
Auto = 'auto',
Never = 'never',
}
export enum DrawStyle {
export enum GraphDrawStyle {
Bars = 'bars',
Line = 'line',
Points = 'points',
@@ -207,7 +207,7 @@ export interface GraphFieldConfig
BarConfig,
StackableFieldConfig,
HideableFieldConfig {
drawStyle?: DrawStyle;
drawStyle?: GraphDrawStyle;
gradientMode?: GraphGradientMode;
thresholdsStyle?: GraphThresholdsStyleConfig;
}