@@ -26,7 +26,7 @@ grafonnet.panel.barChart
26
26
* [ ` fn withAxisSoftMin(value) ` ] ( #fn-fieldconfigdefaultscustomwithaxissoftmin )
27
27
* [ ` fn withAxisWidth(value) ` ] ( #fn-fieldconfigdefaultscustomwithaxiswidth )
28
28
* [ ` fn withFillOpacity(value=80) ` ] ( #fn-fieldconfigdefaultscustomwithfillopacity )
29
- * [ ` fn withGradientMode(value) ` ] ( #fn-fieldconfigdefaultscustomwithgradientmode )
29
+ * [ ` fn withGradientMode(value="none" ) ` ] ( #fn-fieldconfigdefaultscustomwithgradientmode )
30
30
* [ ` fn withHideFrom(value) ` ] ( #fn-fieldconfigdefaultscustomwithhidefrom )
31
31
* [ ` fn withHideFromMixin(value) ` ] ( #fn-fieldconfigdefaultscustomwithhidefrommixin )
32
32
* [ ` fn withLineWidth(value=1) ` ] ( #fn-fieldconfigdefaultscustomwithlinewidth )
@@ -55,9 +55,9 @@ grafonnet.panel.barChart
55
55
* [ ` fn withGroupWidth(value=0.7) ` ] ( #fn-optionswithgroupwidth )
56
56
* [ ` fn withLegend(value) ` ] ( #fn-optionswithlegend )
57
57
* [ ` fn withLegendMixin(value) ` ] ( #fn-optionswithlegendmixin )
58
- * [ ` fn withOrientation(value) ` ] ( #fn-optionswithorientation )
59
- * [ ` fn withShowValue(value) ` ] ( #fn-optionswithshowvalue )
60
- * [ ` fn withStacking(value) ` ] ( #fn-optionswithstacking )
58
+ * [ ` fn withOrientation(value="auto" ) ` ] ( #fn-optionswithorientation )
59
+ * [ ` fn withShowValue(value="auto" ) ` ] ( #fn-optionswithshowvalue )
60
+ * [ ` fn withStacking(value="none" ) ` ] ( #fn-optionswithstacking )
61
61
* [ ` fn withText(value) ` ] ( #fn-optionswithtext )
62
62
* [ ` fn withTextMixin(value) ` ] ( #fn-optionswithtextmixin )
63
63
* [ ` fn withTooltip(value) ` ] ( #fn-optionswithtooltip )
@@ -70,9 +70,9 @@ grafonnet.panel.barChart
70
70
* [ ` fn withAsTable(value=true) ` ] ( #fn-optionslegendwithastable )
71
71
* [ ` fn withCalcs(value=[]) ` ] ( #fn-optionslegendwithcalcs )
72
72
* [ ` fn withCalcsMixin(value=[]) ` ] ( #fn-optionslegendwithcalcsmixin )
73
- * [ ` fn withDisplayMode(value) ` ] ( #fn-optionslegendwithdisplaymode )
73
+ * [ ` fn withDisplayMode(value="list" ) ` ] ( #fn-optionslegendwithdisplaymode )
74
74
* [ ` fn withIsVisible(value=true) ` ] ( #fn-optionslegendwithisvisible )
75
- * [ ` fn withPlacement(value) ` ] ( #fn-optionslegendwithplacement )
75
+ * [ ` fn withPlacement(value="bottom" ) ` ] ( #fn-optionslegendwithplacement )
76
76
* [ ` fn withShowLegend(value=true) ` ] ( #fn-optionslegendwithshowlegend )
77
77
* [ ` fn withSortBy(value) ` ] ( #fn-optionslegendwithsortby )
78
78
* [ ` fn withSortDesc(value=true) ` ] ( #fn-optionslegendwithsortdesc )
@@ -273,12 +273,13 @@ Controls the fill opacity of the bars.
273
273
###### fn fieldConfig.defaults.custom.withGradientMode
274
274
275
275
``` jsonnet
276
- fieldConfig.defaults.custom.withGradientMode(value)
276
+ fieldConfig.defaults.custom.withGradientMode(value="none" )
277
277
```
278
278
279
279
PARAMETERS:
280
280
281
281
* ** value** (` string ` )
282
+ - default value: ` "none" `
282
283
- valid values: ` "none" ` , ` "opacity" ` , ` "hue" ` , ` "scheme" `
283
284
284
285
TODO docs
@@ -564,36 +565,39 @@ TODO docs
564
565
#### fn options.withOrientation
565
566
566
567
``` jsonnet
567
- options.withOrientation(value)
568
+ options.withOrientation(value="auto" )
568
569
```
569
570
570
571
PARAMETERS:
571
572
572
573
* ** value** (` string ` )
574
+ - default value: ` "auto" `
573
575
- valid values: ` "auto" ` , ` "vertical" ` , ` "horizontal" `
574
576
575
577
TODO docs
576
578
#### fn options.withShowValue
577
579
578
580
``` jsonnet
579
- options.withShowValue(value)
581
+ options.withShowValue(value="auto" )
580
582
```
581
583
582
584
PARAMETERS:
583
585
584
586
* ** value** (` string ` )
587
+ - default value: ` "auto" `
585
588
- valid values: ` "auto" ` , ` "never" ` , ` "always" `
586
589
587
590
TODO docs
588
591
#### fn options.withStacking
589
592
590
593
``` jsonnet
591
- options.withStacking(value)
594
+ options.withStacking(value="none" )
592
595
```
593
596
594
597
PARAMETERS:
595
598
596
599
* ** value** (` string ` )
600
+ - default value: ` "none" `
597
601
- valid values: ` "none" ` , ` "normal" ` , ` "percent" `
598
602
599
603
TODO docs
@@ -730,12 +734,13 @@ PARAMETERS:
730
734
##### fn options.legend.withDisplayMode
731
735
732
736
``` jsonnet
733
- options.legend.withDisplayMode(value)
737
+ options.legend.withDisplayMode(value="list" )
734
738
```
735
739
736
740
PARAMETERS:
737
741
738
742
* ** value** (` string ` )
743
+ - default value: ` "list" `
739
744
- valid values: ` "list" ` , ` "table" ` , ` "hidden" `
740
745
741
746
TODO docs
@@ -755,12 +760,13 @@ PARAMETERS:
755
760
##### fn options.legend.withPlacement
756
761
757
762
``` jsonnet
758
- options.legend.withPlacement(value)
763
+ options.legend.withPlacement(value="bottom" )
759
764
```
760
765
761
766
PARAMETERS:
762
767
763
768
* ** value** (` string ` )
769
+ - default value: ` "bottom" `
764
770
- valid values: ` "bottom" ` , ` "right" `
765
771
766
772
TODO docs
0 commit comments