Skip to content

Commit 2fc1f3c

Browse files
committed
Fix scatterpolargl sequenced render
1 parent 688b874 commit 2fc1f3c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/traces/scatterpolargl/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ function plot(container, subplot, cdata) {
108108

109109
stash.tree = cluster(positions);
110110

111-
if(options.marker) {
111+
// FIXME: see scattergl.js#109
112+
if(options.marker && count >= TOO_MANY_POINTS) {
112113
options.marker.cluster = stash.tree;
113114
}
114115

0 commit comments

Comments
 (0)