@@ -33,31 +33,31 @@ def _get_widths_df():
3333def _valid_scale_width_kwargs ():
3434 vkwargs = {
3535 'ohlc' : { 'Default' : None ,
36- 'Description' : '' ,
36+ 'Description' : 'length of horizontal open/close tickmarks on ohlc bars ' ,
3737 'Validator' : lambda value : isinstance (value ,(float ,int )) },
3838
3939 'volume' : { 'Default' : None ,
40- 'Description' : '' ,
40+ 'Description' : 'width of volume bars ' ,
4141 'Validator' : lambda value : isinstance (value ,(float ,int )) },
4242
4343 'candle' : { 'Default' : None ,
44- 'Description' : '' ,
44+ 'Description' : 'width of candles ' ,
4545 'Validator' : lambda value : isinstance (value ,(float ,int )) },
4646
4747 'lines' : { 'Default' : None ,
48- 'Description' : '' ,
48+ 'Description' : 'width of lines (for line plots and moving averages) ' ,
4949 'Validator' : lambda value : isinstance (value ,(float ,int )) },
5050
5151 'volume_linewidth' : { 'Default' : None ,
52- 'Description' : '' ,
52+ 'Description' : 'width of edges of volume bars ' ,
5353 'Validator' : lambda value : isinstance (value ,(float ,int )) },
5454
5555 'ohlc_linewidth' : { 'Default' : None ,
56- 'Description' : '' ,
56+ 'Description' : 'width (thickness) of ohlc bars ' ,
5757 'Validator' : lambda value : isinstance (value ,(float ,int )) },
5858
5959 'candle_linewidth' : { 'Default' : None ,
60- 'Description' : '' ,
60+ 'Description' : 'width of candle edges and wicks ' ,
6161 'Validator' : lambda value : isinstance (value ,(float ,int )) },
6262 }
6363
@@ -70,31 +70,31 @@ def _valid_update_width_kwargs():
7070 vkwargs = {
7171
7272 'ohlc_ticksize' : { 'Default' : None ,
73- 'Description' : '' ,
73+ 'Description' : 'length of horizontal open/close tickmarks on ohlc bars ' ,
7474 'Validator' : lambda value : isinstance (value ,(float ,int )) },
7575
7676 'ohlc_linewidth' : { 'Default' : None ,
77- 'Description' : '' ,
77+ 'Description' : 'width (thickness) of ohlc bars ' ,
7878 'Validator' : lambda value : isinstance (value ,(float ,int )) },
7979
8080 'volume_width' : { 'Default' : None ,
81- 'Description' : '' ,
81+ 'Description' : 'width of volume bars ' ,
8282 'Validator' : lambda value : isinstance (value ,(float ,int )) },
8383
8484 'volume_linewidth' : { 'Default' : None ,
85- 'Description' : '' ,
85+ 'Description' : 'width of edges of volume bars ' ,
8686 'Validator' : lambda value : isinstance (value ,(float ,int )) },
8787
8888 'candle_width' : { 'Default' : None ,
89- 'Description' : '' ,
89+ 'Description' : 'width of candles ' ,
9090 'Validator' : lambda value : isinstance (value ,(float ,int )) },
9191
9292 'candle_linewidth' : { 'Default' : None ,
93- 'Description' : '' ,
93+ 'Description' : 'width of candle edges and wicks ' ,
9494 'Validator' : lambda value : isinstance (value ,(float ,int )) },
9595
9696 'line_width' : { 'Default' : None ,
97- 'Description' : '' ,
97+ 'Description' : 'width of lines (for line plots and moving averages) ' ,
9898 'Validator' : lambda value : isinstance (value ,(float ,int )) },
9999 }
100100
0 commit comments