8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 380ff99 commit c8bf027Copy full SHA for c8bf027
lib/matplotlib/backend_bases.py
@@ -3276,13 +3276,18 @@ def on_tool_fig_close(e):
3276
def save_figure(self, *args):
3277
"""
3278
Save the current figure.
3279
+
3280
+ Backend implementations may choose to return
3281
+ the absolute path of the saved file, if any, as
3282
+ a string.
3283
3284
+ If no file is created or the backend does not implement
3285
+ this functionality then `None` is returned.
3286
3287
Returns
3288
-------
3289
str or `None`
3290
The filepath of the saved figure.
- For GTK4 and WebAgg backends it returns `None`.
- Returns `None` if figure is not saved.
3291
3292
raise NotImplementedError
3293
0 commit comments