Skip to content
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

Removed all mpld3 support #1516

Merged
merged 6 commits into from
Jun 18, 2017
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
5 changes: 0 additions & 5 deletions doc/Examples/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,6 @@ Extensions
Examples of how the core functionality offered by HoloViews may be
extended in new (and unexpected!) directions:

* `Interactive plots with mpld3
<http://philippjfr.com/blog/interactive-plots-with-holoviews-and-mpld3/>`_:
Example usage of the mpld3 rendering backend allowing you to
generate D3.js-based plots with interactive widgets.

* `Using HoloViews from Julia
<http://philippjfr.com/blog/interfacing-holoviews-with-julia/>`_:
A prototype interface to allow HoloViews to be used from the Julia
Expand Down
2 changes: 1 addition & 1 deletion doc/Tutorials/Options.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"``style`` options are passed directly to the underlying rendering backend that actually draws the plots, allowing you to control the details of how it behaves. The default backend is matplotlib, but there are other backends either using matplotlib's options (e.g. ``mpld3``), or their own sets of options (e.g. [``bokeh``](Bokeh_Backend) ).\n",
"``style`` options are passed directly to the underlying rendering backend that actually draws the plots, allowing you to control the details of how it behaves. The default backend is matplotlib, but there are other backends either using matplotlib's options (e.g. ``nbagg``), or their own sets of options (e.g. [``bokeh``](Bokeh_Backend) ).\n",
"\n",
"For whichever backend has been selected, HoloViews can tell you which options are supported, but you will need to see the plotting library's own documentation (e.g. [matplotlib](http://matplotlib.org/contents.html), [bokeh](http://bokeh.pydata.org)) for the details of their use.\n",
"\n",
Expand Down
7 changes: 3 additions & 4 deletions doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,9 @@ packages that provide additional functionality in HoloViews::

pip install 'holoviews[extras]'

This option installs all the required and recommended packages, plus
the optional `mpld3 <http://mpld3.github.io/>`_,
`pandas <http://pandas.pydata.org/>`_ and
`Seaborn <http://stanford.edu/~mwaskom/software/seaborn/>`_ libraries.
This option installs all the required and recommended packages,
including the `pandas <http://pandas.pydata.org/>`_ and `Seaborn
<http://stanford.edu/~mwaskom/software/seaborn/>`_ libraries.

Lastly, to get *everything*, including `cyordereddict
<https://pypi.python.org/pypi/cyordereddict>`_ to enable optional
Expand Down
7 changes: 0 additions & 7 deletions holoviews/plotting/mpl/comms.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,6 @@
target.append(img)
"""

mpld3_msg_handler = """
/* Backend specific body of the msg_handler, updates displayed frame */
target = $('#fig_el{comm_id}');
target.children().each(function () {{ $(this).remove() }});
mpld3.draw_figure("fig_el{comm_id}", msg);
"""

class NbAggCommSocket(CommSocket):
"""
NbAggCommSocket subclasses the matplotlib CommSocket allowing
Expand Down
254 changes: 0 additions & 254 deletions holoviews/plotting/mpl/hooks.py

This file was deleted.

27 changes: 0 additions & 27 deletions holoviews/plotting/mpl/mplwidgets.jinja

This file was deleted.

Loading