Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@
nb_execution_mode = "force" # "off", "force", "cache", "auto"
nb_execution_allow_errors = False
nb_merge_streams = True
nb_scroll_outputs = True

# Notebook cell execution timeout; defaults to 30.
nb_execution_timeout = 1000
Expand Down
4 changes: 4 additions & 0 deletions docs/source/how_to/how_to_change_plotting_backend.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@
"\n",
"The returned figure object is a [`matplotlib.axes.Axes`](https://matplotlib.org/stable/api/_as_gen/matplotlib.axes.Axes.html).\n",
"\n",
"```{note}\n",
"In case of grid plots (such as `convergence_plot` or `slice_plot`), the returned object is a 2-dimensional numpy array of `Axes` objects: [`numpy.ndarray`](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.html)[[`matplotlib.axes.Axes`]](https://matplotlib.org/stable/api/_as_gen/matplotlib.axes.Axes.html) of shape `(n_rows, n_cols)`.\n",
"```\n",
"\n",
":::\n",
"\n",
"::::"
Expand Down
Loading
Loading