There seems to be a regression in 1.42 for scattegl traces with mode='lines' and >100k points.
Originally discussed in https://community.plot.ly/t/trouble-with-scattergl-lines-with-lots-of-points/15408/2
CodePen: https://codepen.io/jonmmease/pen/qQZWXB
functiongaussianRand(){varrand=0;for(vari=0;i<6;i+=1){rand+=Math.random();}return(rand/6)-0.5;}// 100,000 failsvarpoint_num=100000;// 99,999 is fine// var point_num = 99999;varY=[];for(vari=0;i<point_num;i++){Y.push((gaussianRand()*8));}vardata=[{type: "scattergl",mode: "line",y: Y}]varlayout={showlegend: false}Plotly.plot('graph',data=data,layout=layout)with <= 99,999 points the plot works as expected

but with >= 100,000 points the plot doesn't render and the following JavaScript error is raised
TypeError: opts.marker is undefined. plotly-1.42.4.js:168110:1
version 1.41.3 doesn't have this error. Thanks!
There seems to be a regression in 1.42 for
scattegltraces withmode='lines'and >100k points.Originally discussed in https://community.plot.ly/t/trouble-with-scattergl-lines-with-lots-of-points/15408/2
CodePen: https://codepen.io/jonmmease/pen/qQZWXB
with <= 99,999 points the plot works as expected

but with >= 100,000 points the plot doesn't render and the following JavaScript error is raised
version 1.41.3 doesn't have this error. Thanks!