8000 Add mplcursors to third-party packages. by anntzer · Pull Request #7242 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Add mplcursors to third-party packages. #7242

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 9, 2016
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
Add mplcursors to third-party packages.
Self-plug :-)
  • Loading branch information
anntzer committed Oct 9, 2016
commit 87fea98c1abc7cf1474854c2f73a13bea2a4893c
9 changes: 9 additions & 0 deletions doc/thirdpartypackages/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,15 @@ toolkit written by Joe Kington to provide interactive "data cursors"
(clickable annotation boxes) for matplotlib.


.. _toolkit_mplcursors:

mplcursors
==========

`mplcursors <https://mplcursors.readthedocs.io>`_ provides interactive
data cursors for matplotlib.


.. _toolkit_natgrid:

Natgrid
Expand Down
6 changes: 4 additions & 2 deletions examples/pylab_examples/cursor_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@
Faster cursoring is possible using native GUI drawing, as in
wxcursor_demo.py.

Also, mpldatacursor can be used to achieve a similar effect. See webpage:
https://github.com/joferkington/mpldatacursor
The mpldatacursor and mplcursors third-party packages can be used to achieve a
similar effect. See
https://github.com/joferkington/mpldatacursor
https://github.com/anntzer/mplcursors
"""
from __future__ import print_function
import matplotlib.pyplot as plt
Expand Down
0