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
After generating a plotly plot in Python Interactive, I want to save/download the plot as a png. I click on the little camera icon to “download plot as a png”. Two small screens appear saying “taking a snapshot, this may take a few seconds” then “Snapshot succeeded - newplot.png”. I would expect that file to then exist in my workspace.
Actual behaviour
The file does not appear in my workspace, and searching on my computer does not show any file existing.
Steps to reproduce:
Generate plotly plot in python interactive window.
SO is saying yes, we can override the link click. Just need to figure out what to do with it:
document.addEventListener('click', event => {
let node = event && event.target;
while (node) {
if (node.tagName && node.tagName === 'A' && node.href) {
// Handle click here by posting data back to VS Code
// for your extension to handle
vscode.postMessage({ ... });
event.preventDefault();
return;
}
node = node.parentNode;
}
}, true);``
Environment data
"python.jediEnabled"
set to; more info How to update the language server to the latest stable version vscode-python#3977): TrueExpected behaviour
After generating a plotly plot in Python Interactive, I want to save/download the plot as a png. I click on the little camera icon to “download plot as a png”. Two small screens appear saying “taking a snapshot, this may take a few seconds” then “Snapshot succeeded - newplot.png”. I would expect that file to then exist in my workspace.
Actual behaviour
The file does not appear in my workspace, and searching on my computer does not show any file existing.
Steps to reproduce:
Logs
Not comfortable dumping those right now because this is my work machine.
The text was updated successfully, but these errors were encountered: