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 0efb54e commit 8192b50Copy full SHA for 8192b50
src/traces/pointcloud/convert.js
@@ -176,8 +176,9 @@ proto.updateFast = function(options) {
176
this.pointcloudOptions.color = markerColor;
177
178
var blend = options.marker.blend;
179
- if (blend == null) {
180
- blend = x.length < 100 || y.length < 100;
+ if(blend === undefined) {
+ var maxPoints = 100;
181
+ blend = x.length < maxPoints || y.length < maxPoints;
182
}
183
this.pointcloudOptions.blend = blend;
184
0 commit comments