We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 973d6ec commit 0efb54eCopy full SHA for 0efb54e
src/traces/pointcloud/attributes.js
@@ -75,7 +75,7 @@ module.exports = {
75
},
76
blend: {
77
valType: 'boolean',
78
- dflt: false,
+ dflt: undefined,
79
role: 'style',
80
description: [
81
'Determines if colors are blended together for a translucency effect',
src/traces/pointcloud/convert.js
@@ -174,7 +174,12 @@ proto.updateFast = function(options) {
174
175
markerColor[3] *= opacity;
176
this.pointcloudOptions.color = markerColor;
177
- this.pointcloudOptions.blend = options.marker.blend;
+
178
+ var blend = options.marker.blend;
179
+ if (blend == null) {
180
+ blend = x.length < 100 || y.length < 100;
181
+ }
182
+ this.pointcloudOptions.blend = blend;
183
184
borderColor[3] *= opacity;
185
this.pointcloudOptions.borderColor = borderColor;
0 commit comments