Suppose I have a scatterplot
let scatterTrace = {
x: [1,2,3],
y: [4,-1,2],
mode: 'markers'
}
Plotly.newPlot("someDiv", scatterTrace)
and I zoom into the graphic. Than I delete a point with Plotly.restyle
Plotly.restyle("simeDiv", {x:[1,2], y:[4,-1]})
The graphic will now reset (zoom is lost).
Is there a way to prevent this reset?