We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f37f04d commit b2e494cCopy full SHA for b2e494c
1 file changed
src/traces/box/calc.js
@@ -141,7 +141,12 @@ module.exports = function calc(gd, trace) {
141
cdi.min = imin;
142
cdi.max = imax;
143
} else {
144
- Lib.warn('Invalid input - make sure that q1 <= median <= q3');
+ Lib.warn([
145
+ 'Invalid input - make sure that q1 <= median <= q3',
146
+ 'q1 = ' + cdi.q1,
147
+ 'median = ' + cdi.med,
148
+ 'q3 = ' + cdi.q3
149
+ ].join('\n'));
150
151
var v0;
152
if(cdi.med !== BADNUM) {
0 commit comments