@@ -26,7 +26,7 @@ grafonnet.panel.barChart
2626 * [ ` fn withAxisSoftMin(value) ` ] ( #fn-fieldconfigdefaultscustomwithaxissoftmin )
2727 * [ ` fn withAxisWidth(value) ` ] ( #fn-fieldconfigdefaultscustomwithaxiswidth )
2828 * [ ` fn withFillOpacity(value=80) ` ] ( #fn-fieldconfigdefaultscustomwithfillopacity )
29- * [ ` fn withGradientMode(value) ` ] ( #fn-fieldconfigdefaultscustomwithgradientmode )
29+ * [ ` fn withGradientMode(value="none" ) ` ] ( #fn-fieldconfigdefaultscustomwithgradientmode )
3030 * [ ` fn withHideFrom(value) ` ] ( #fn-fieldconfigdefaultscustomwithhidefrom )
3131 * [ ` fn withHideFromMixin(value) ` ] ( #fn-fieldconfigdefaultscustomwithhidefrommixin )
3232 * [ ` fn withLineWidth(value=1) ` ] ( #fn-fieldconfigdefaultscustomwithlinewidth )
@@ -55,9 +55,9 @@ grafonnet.panel.barChart
5555 * [ ` fn withGroupWidth(value=0.7) ` ] ( #fn-optionswithgroupwidth )
5656 * [ ` fn withLegend(value) ` ] ( #fn-optionswithlegend )
5757 * [ ` 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 )
6161 * [ ` fn withText(value) ` ] ( #fn-optionswithtext )
6262 * [ ` fn withTextMixin(value) ` ] ( #fn-optionswithtextmixin )
6363 * [ ` fn withTooltip(value) ` ] ( #fn-optionswithtooltip )
@@ -70,9 +70,9 @@ grafonnet.panel.barChart
7070 * [ ` fn withAsTable(value=true) ` ] ( #fn-optionslegendwithastable )
7171 * [ ` fn withCalcs(value=[]) ` ] ( #fn-optionslegendwithcalcs )
7272 * [ ` fn withCalcsMixin(value=[]) ` ] ( #fn-optionslegendwithcalcsmixin )
73- * [ ` fn withDisplayMode(value) ` ] ( #fn-optionslegendwithdisplaymode )
73+ * [ ` fn withDisplayMode(value="list" ) ` ] ( #fn-optionslegendwithdisplaymode )
7474 * [ ` fn withIsVisible(value=true) ` ] ( #fn-optionslegendwithisvisible )
75- * [ ` fn withPlacement(value) ` ] ( #fn-optionslegendwithplacement )
75+ * [ ` fn withPlacement(value="bottom" ) ` ] ( #fn-optionslegendwithplacement )
7676 * [ ` fn withShowLegend(value=true) ` ] ( #fn-optionslegendwithshowlegend )
7777 * [ ` fn withSortBy(value) ` ] ( #fn-optionslegendwithsortby )
7878 * [ ` fn withSortDesc(value=true) ` ] ( #fn-optionslegendwithsortdesc )
@@ -273,12 +273,13 @@ Controls the fill opacity of the bars.
273273###### fn fieldConfig.defaults.custom.withGradientMode
274274
275275``` jsonnet
276- fieldConfig.defaults.custom.withGradientMode(value)
276+ fieldConfig.defaults.custom.withGradientMode(value="none" )
277277```
278278
279279PARAMETERS:
280280
281281* ** value** (` string ` )
282+ - default value: ` "none" `
282283 - valid values: ` "none" ` , ` "opacity" ` , ` "hue" ` , ` "scheme" `
283284
284285TODO docs
@@ -564,36 +565,39 @@ TODO docs
564565#### fn options.withOrientation
565566
566567``` jsonnet
567- options.withOrientation(value)
568+ options.withOrientation(value="auto" )
568569```
569570
570571PARAMETERS:
571572
572573* ** value** (` string ` )
574+ - default value: ` "auto" `
573575 - valid values: ` "auto" ` , ` "vertical" ` , ` "horizontal" `
574576
575577TODO docs
576578#### fn options.withShowValue
577579
578580``` jsonnet
579- options.withShowValue(value)
581+ options.withShowValue(value="auto" )
580582```
581583
582584PARAMETERS:
583585
584586* ** value** (` string ` )
587+ - default value: ` "auto" `
585588 - valid values: ` "auto" ` , ` "never" ` , ` "always" `
586589
587590TODO docs
588591#### fn options.withStacking
589592
590593``` jsonnet
591- options.withStacking(value)
594+ options.withStacking(value="none" )
592595```
593596
594597PARAMETERS:
595598
596599* ** value** (` string ` )
600+ - default value: ` "none" `
597601 - valid values: ` "none" ` , ` "normal" ` , ` "percent" `
598602
599603TODO docs
@@ -730,12 +734,13 @@ PARAMETERS:
730734##### fn options.legend.withDisplayMode
731735
732736``` jsonnet
733- options.legend.withDisplayMode(value)
737+ options.legend.withDisplayMode(value="list" )
734738```
735739
736740PARAMETERS:
737741
738742* ** value** (` string ` )
743+ - default value: ` "list" `
739744 - valid values: ` "list" ` , ` "table" ` , ` "hidden" `
740745
741746TODO docs
@@ -755,12 +760,13 @@ PARAMETERS:
755760##### fn options.legend.withPlacement
756761
757762``` jsonnet
758- options.legend.withPlacement(value)
763+ options.legend.withPlacement(value="bottom" )
759764```
760765
761766PARAMETERS:
762767
763768* ** value** (` string ` )
769+ - default value: ` "bottom" `
764770 - valid values: ` "bottom" ` , ` "right" `
765771
766772TODO docs
0 commit comments