From version 1.34.0 and onward, mouse hover on scatter3d always picks point number 0. Version 1.33.1 works fine. The problem exists in both Chrome and Firefox on Ubuntu 16.04 and Ubuntu 18.04. Here is a small example:
'use strict';{asyncfunctionmain(){constdata=[{type: 'scatter3d',mode: 'markers',x: Array.from({length: 25},()=>Math.random()),y: Array.from({length: 25},()=>Math.random()),z: Array.from({length: 25},()=>Math.random())}];constlayout={};constplot=document.createElement('div')plot.style='width: 90vw; height: 90vh'document.body.appendChild(plot)awaitPlotly.plot(plot,data,layout)plot.on('plotly_hover',event=>console.log(event))}main()}And here is a screenshot of the bug (notice where the mouse is pointing):

From version 1.34.0 and onward, mouse hover on
scatter3dalways picks point number 0. Version 1.33.1 works fine. The problem exists in both Chrome and Firefox on Ubuntu 16.04 and Ubuntu 18.04. Here is a small example:And here is a screenshot of the bug (notice where the mouse is pointing):
