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 1649b1f commit cc4d3c7Copy full SHA for cc4d3c7
src/traces/pointcloud/attributes.js
@@ -75,7 +75,7 @@ module.exports = {
75
},
76
blend: {
77
valType: 'boolean',
78
- dflt: undefined,
+ dflt: null,
79
role: 'style',
80
description: [
81
'Determines if colors are blended together for a translucency effect',
src/traces/pointcloud/convert.js
@@ -178,7 +178,7 @@ proto.updateFast = function(options) {
178
// detect blending from the number of points, if undefined
179
// because large data with blending hits performance
180
var blend = options.marker.blend;
181
- if(blend === undefined) {
+ if(blend === null) {
182
var maxPoints = 100;
183
blend = x.length < maxPoints || y.length < maxPoints;
184
}
0 commit comments