Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Binary file added doc/_static/canvasagg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/_static/embedding_in_qt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/_static/embedding_in_tk.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/_static/embedding_webagg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
301 changes: 301 additions & 0 deletions doc/_static/svg_histogram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
385 changes: 385 additions & 0 deletions doc/_static/svg_tooltip.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/_static/toolmanager.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions galleries/examples/user_interfaces/canvasagg.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
CanvasAgg demo
==============
Comment thread
timhoffm marked this conversation as resolved.
Outdated
This example shows how to use the agg backend directly to create images, which
may be of use to web application developers who want full control over their
code without using the pyplot interface to manage figures, figure closing etc.
Expand All @@ -23,6 +24,7 @@
.. redirect-from:: /gallery/misc/agg_buffer
.. redirect-from:: /gallery/misc/agg_buffer_to_array
"""
# sphinx_gallery_thumbnail_path = '_static/canvasagg.png'

from PIL import Image

Expand Down
3 changes: 3 additions & 0 deletions galleries/examples/user_interfaces/embedding_in_qt_sgskip.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
equally well using any Qt binding (PyQt6, PySide6, PyQt5, PySide2). The
binding can be selected by setting the :envvar:`QT_API` environment variable to
the binding name, or by first importing it.


Comment thread
timhoffm marked this conversation as resolved.
Outdated
"""
# sphinx_gallery_thumbnail_path = '_static/embedding_in_qt.png'

import sys
import time
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
===========
"""
# sphinx_gallery_thumbnail_path = '_static/embedding_in_tk.png'

import tkinter

Expand Down
2 changes: 2 additions & 0 deletions galleries/examples/user_interfaces/embedding_webagg_sgskip.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
Embedding WebAgg
================
Comment thread
timhoffm marked this conversation as resolved.
Outdated
This example demonstrates how to embed Matplotlib WebAgg interactive plotting
in your own web application and framework. It is not necessary to do all this
if you merely want to display a plot in a browser or use Matplotlib's built-in
Tornado-based server "on the side".
The framework being used must support web sockets.
"""
# sphinx_gallery_thumbnail_path = '_static/embedding_webagg.png'

import argparse
import io
Expand Down
301 changes: 301 additions & 0 deletions galleries/examples/user_interfaces/images/svg_histogram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
385 changes: 385 additions & 0 deletions galleries/examples/user_interfaces/images/svg_tooltip.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions galleries/examples/user_interfaces/svg_histogram_sgskip.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
Author: [email protected]

"""
# sphinx_gallery_thumbnail_path = '_static/svg_histogram.svg'


from io import BytesIO
Expand Down
1 change: 1 addition & 0 deletions galleries/examples/user_interfaces/svg_tooltip_sgskip.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

:author: David Huard
"""
# sphinx_gallery_thumbnail_path = '_static/svg_tooltip.svg'


from io import BytesIO
Expand Down
1 change: 1 addition & 0 deletions galleries/examples/user_interfaces/toolmanager_sgskip.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
using `matplotlib.backend_managers.ToolManager`.
"""
# sphinx_gallery_thumbnail_path = '_static/toolmanager.png'

import matplotlib.pyplot as plt

Expand Down
Loading