@@ -82,15 +82,21 @@ module.exports = {
82
82
role : 'style' ,
83
83
description : [
84
84
'Determines whether or not the x axis bin attributes are picked' ,
85
- 'by an algorithm.'
85
+ 'by an algorithm. Note that this should be set to false if you' ,
86
+ 'want to manually set the number of bins using the attributes in' ,
87
+ 'xbins.'
86
88
] . join ( ' ' )
87
89
} ,
88
90
nbinsx : {
89
91
valType : 'integer' ,
90
92
min : 0 ,
91
93
dflt : 0 ,
92
94
role : 'style' ,
93
- description : 'Sets the number of x axis bins.'
95
+ description : [
96
+ 'Specifies the maximum number of desired bins. This value will be used' ,
97
+ 'in an algorithm that will decide the optimal bin size such that the' ,
98
+ 'histogram best visualizes the distribution of the data.'
99
+ ] . join ( ' ' )
94
100
} ,
95
101
xbins : makeBinsAttr ( 'x' ) ,
96
102
@@ -100,15 +106,21 @@ module.exports = {
100
106
role : 'style' ,
101
107
description : [
102
108
'Determines whether or not the y axis bin attributes are picked' ,
103
- 'by an algorithm.'
109
+ 'by an algorithm. Note that this should be set to false if you' ,
110
+ 'want to manually set the number of bins using the attributes in' ,
111
+ 'ybins.'
104
112
] . join ( ' ' )
105
113
} ,
106
114
nbinsy : {
107
115
valType : 'integer' ,
108
116
min : 0 ,
109
117
dflt : 0 ,
110
118
role : 'style' ,
111
- description : 'Sets the number of y axis bins.'
119
+ description : [
120
+ 'Specifies the maximum number of desired bins. This value will be used' ,
121
+ 'in an algorithm that will decide the optimal bin size such that the' ,
122
+ 'histogram best visualizes the distribution of the data.'
123
+ ] . join ( ' ' )
112
124
} ,
113
125
ybins : makeBinsAttr ( 'y' ) ,
114
126
0 commit comments