Skip to content

Commit 369977f

Browse files
authored
Fix for plotly#6251
1 parent bc95e66 commit 369977f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/traces/scattergl/plot.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ var exports = module.exports = function plot(gd, subplot, cdata) {
255255
var isSelectMode = selectMode(dragmode);
256256
var clickSelectEnabled = fullLayout.clickmode.indexOf('select') > -1;
257257

258-
for(i = 0; i < count; i++) {
258+
for(i = 0; i < cdata.length; i++) {
259259
var cd0 = cdata[i][0];
260260
var trace = cd0.trace;
261261
var stash = cd0.t;

0 commit comments

Comments
 (0)