@@ -326,19 +326,22 @@ def _valid_plot_kwargs():
326
326
'Validator' : lambda value : value in ('v0' , 'v1' ) },
327
327
328
328
'scale_width_adjustment' : { 'Default' : None ,
329
- 'Description' : '' ,
329
+ 'Description' : 'scale width of plot objects wider, > 1.0, or narrower, < 1.0' +
330
+ ' may also be a dict to scale individual widths.' + ,
331
+ ' (See also "widths" tutorial in mplfinance examples folder).' ,
330
332
'Validator' : lambda value : isinstance (value ,dict ) and len (value ) > 0 },
331
333
332
334
'update_width_config' : { 'Default' : None ,
333
- 'Description' : '' ,
335
+ 'Description' : 'dict - update individual items in width configuration.' + ,
336
+ ' (See also "widths" tutorial in mplfinance examples folder).' ,
334
337
'Validator' : lambda value : isinstance (value ,dict ) and len (value ) > 0 },
335
338
336
339
'return_width_config' : { 'Default' : None ,
337
- 'Description' : '' ,
340
+ 'Description' : 'empty dict variable to be filled with width configuration settings. ' ,
338
341
'Validator' : lambda value : isinstance (value ,dict ) and len (value )== 0 },
339
342
340
343
'saxbelow' : { 'Default' : True , # Issue#115 Comment#639446764
341
- 'Description' : '' ,
344
+ 'Description' : 'set the volume Axes below (behind) all other Axes objects ' ,
342
345
'Validator' : lambda value : isinstance (value ,bool ) },
343
346
344
347
'ax' : { 'Default' : None ,
0 commit comments