We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4b34eaa + 8dd95fe commit 937e6baCopy full SHA for 937e6ba
src/traces/scatter/calc.js
@@ -122,7 +122,7 @@ module.exports = function calc(gd, trace) {
122
}
123
124
// this has migrated up from arraysToCalcdata as we have a reference to 's' here
125
- if(typeof s !== undefined) Lib.mergeArray(s, cd, 'ms');
+ if(typeof s !== 'undefined') Lib.mergeArray(s, cd, 'ms');
126
127
gd.firstscatter = false;
128
return cd;
src/traces/scatterternary/calc.js
@@ -91,7 +91,7 @@ module.exports = function calc(gd, trace) {
91
calcColorscale(trace);
92
93
94
95
96
97
};
0 commit comments