Look at the Plotly.newPlot documentation, there are a few lines of code that say:
Plotly.newPlot(graphDiv, data, layout);
…
var dataRetrievedLater = graphDiv.data;
var layoutRetrievedLater = graphDiv.layout;
This gives us the ability to retrieve most of the plot’s information after plotting. But what about the config?
Is it possible to do the same thing to the config?