@@ -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.'
86
- ].join(' ')
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'
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 desired amount of 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
+ ]
94
100
},
95
101
xbins: makeBinsAttr('x'),
96
102
@@ -99,16 +105,22 @@ module.exports = {
99
105
dflt: true,
100
106
role: 'style',
101
107
description: [
102
- 'Determines whether or not the y axis bin attributes are picked',
103
- 'by an algorithm.'
108
+ 'Determines whether or not the y axis bin attributes are picked',
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 desired amount of 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
+ ]
112
124
},
113
125
ybins: makeBinsAttr('y'),
114
126
0 commit comments