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 1c61a47 commit 9f57effCopy full SHA for 9f57eff
src/traces/scattergl/convert.js
@@ -408,7 +408,7 @@ proto.updateFast = function(options) {
408
409
// if we have selPositions array - means we have to render all points transparent, and selected points opaque
410
if(selPositions) {
411
- this.scatter.options.positions = positions;
+ this.scatter.options.positions = null;
412
413
markerColor = str2RGBArray(options.marker.color);
414
borderColor = str2RGBArray(options.marker.line.color);
@@ -425,6 +425,7 @@ proto.updateFast = function(options) {
425
this.scatter.options.borderSize = options.marker.line.width;
426
427
this.scatter.update();
428
+ this.scatter.options.positions = positions;
429
430
431
this.selectScatter.options.positions = selPositions;
0 commit comments