-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Open
Labels
Description
plotly.js/src/traces/scattergl/plot.js
Line 258 in bc95e66
for(i = 0; i < count; i++) { |
Shouldn't this line be
for(i = 0; i < cdata.length; i++) {
? It fixes the issue on my side.