You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes with very small values the hoverdata shows incorrect value probably due to some truncation, rounding, or formating. Hovering over the right left point shows 10 instead of ~0
Sometimes with very small values the hoverdata shows incorrect value probably due to some truncation, rounding, or formating. Hovering over the right left point shows 10 instead of ~0
Plotly.newPlot('myDiv',[{x: [0, 1],y: [1e-8, 1],type: 'scatter'}]);
Note that it works fine with for example
Plotly.newPlot('myDiv',[{x: [0, 1],y: [1e-8, 2e-8],type: 'scatter'}]);
when the y values does not span a big range.
The text was updated successfully, but these errors were encountered: