@@ -33,31 +33,31 @@ def _get_widths_df():
33
33
def _valid_scale_width_kwargs ():
34
34
vkwargs = {
35
35
'ohlc' : { 'Default' : None ,
36
- 'Description' : '' ,
36
+ 'Description' : 'length of horizontal open/close tickmarks on ohlc bars ' ,
37
37
'Validator' : lambda value : isinstance (value ,(float ,int )) },
38
38
39
39
'volume' : { 'Default' : None ,
40
- 'Description' : '' ,
40
+ 'Description' : 'width of volume bars ' ,
41
41
'Validator' : lambda value : isinstance (value ,(float ,int )) },
42
42
43
43
'candle' : { 'Default' : None ,
44
- 'Description' : '' ,
44
+ 'Description' : 'width of candles ' ,
45
45
'Validator' : lambda value : isinstance (value ,(float ,int )) },
46
46
47
47
'lines' : { 'Default' : None ,
48
- 'Description' : '' ,
48
+ 'Description' : 'width of lines (for line plots and moving averages) ' ,
49
49
'Validator' : lambda value : isinstance (value ,(float ,int )) },
50
50
51
51
'volume_linewidth' : { 'Default' : None ,
52
- 'Description' : '' ,
52
+ 'Description' : 'width of edges of volume bars ' ,
53
53
'Validator' : lambda value : isinstance (value ,(float ,int )) },
54
54
55
55
'ohlc_linewidth' : { 'Default' : None ,
56
- 'Description' : '' ,
56
+ 'Description' : 'width (thickness) of ohlc bars ' ,
57
57
'Validator' : lambda value : isinstance (value ,(float ,int )) },
58
58
59
59
'candle_linewidth' : { 'Default' : None ,
60
- 'Description' : '' ,
60
+ 'Description' : 'width of candle edges and wicks ' ,
61
61
'Validator' : lambda value : isinstance (value ,(float ,int )) },
62
62
}
63
63
@@ -70,31 +70,31 @@ def _valid_update_width_kwargs():
70
70
vkwargs = {
71
71
72
72
'ohlc_ticksize' : { 'Default' : None ,
73
- 'Description' : '' ,
73
+ 'Description' : 'length of horizontal open/close tickmarks on ohlc bars ' ,
74
74
'Validator' : lambda value : isinstance (value ,(float ,int )) },
75
75
76
76
'ohlc_linewidth' : { 'Default' : None ,
77
- 'Description' : '' ,
77
+ 'Description' : 'width (thickness) of ohlc bars ' ,
78
78
'Validator' : lambda value : isinstance (value ,(float ,int )) },
79
79
80
80
'volume_width' : { 'Default' : None ,
81
- 'Description' : '' ,
81
+ 'Description' : 'width of volume bars ' ,
82
82
'Validator' : lambda value : isinstance (value ,(float ,int )) },
83
83
84
84
'volume_linewidth' : { 'Default' : None ,
85
- 'Description' : '' ,
85
+ 'Description' : 'width of edges of volume bars ' ,
86
86
'Validator' : lambda value : isinstance (value ,(float ,int )) },
87
87
88
88
'candle_width' : { 'Default' : None ,
89
- 'Description' : '' ,
89
+ 'Description' : 'width of candles ' ,
90
90
'Validator' : lambda value : isinstance (value ,(float ,int )) },
91
91
92
92
'candle_linewidth' : { 'Default' : None ,
93
- 'Description' : '' ,
93
+ 'Description' : 'width of candle edges and wicks ' ,
94
94
'Validator' : lambda value : isinstance (value ,(float ,int )) },
95
95
96
96
'line_width' : { 'Default' : None ,
97
- 'Description' : '' ,
97
+ 'Description' : 'width of lines (for line plots and moving averages) ' ,
98
98
'Validator' : lambda value : isinstance (value ,(float ,int )) },
99
99
}
100
100
0 commit comments