ipympl icon indicating copy to clipboard operation
ipympl copied to clipboard

Matplotlib Jupyter Integration

Results 166 ipympl issues
Sort by recently updated
recently updated
newest added

Hi, Is it possible to add custom buttons to the toolbar? Many thanks for any help.

enhancement

This is essentially a regression of https://github.com/matplotlib/matplotlib/issues/4841 which happened when the nbagg backend was converted to a widget. To reproduce create a cell with a simple plot. ``` plt.plot(range(10)) plt.show()...

I'd like to change the default file name when saving a figure. I tried with `ax.figure.canvas.set_window_title(new_name)`, but 1. the window title is not correctly changed and 2. the default saving...

As the title suggests, attempting to pause through matplotlib currently raises an error. The minimum working example is: ```python %matplotlib widget from matplotlib import pyplot as plt plt.plot([1,2,3]) plt.pause(1) plt.plot([3,2,1])...

I'd like to play with Voila, MyBinder and ipympl. Unfortunately, I can't get ipympl to work with JupyterLab in MyBinder :slightly_frowning_face: But actually, the issue can be reproduced with your...

## Describe the issue Using an interactive figure's `canvas.draw()` method does not update the figure if it was created in the same cell as the draw call. Figure created in...

I'm playing with this tiny experiment: https://github.com/paugier/plot-covid19 Locally, the interaction (currently, just switching from linear to log yscale) does work well. (with Chromium... unfortunately the figures are not displayed with...

Trying to follow some simple examples of Jupyter widgets with matplotlib, but I'm having issues when using the `ipympl` backend. The first update to a plot produces a second plot...

In normal Jupyter notebooks using the `%matplotlib notebook` magic command, scroll events are detected. In Jupyter-Lab with the `%matplotlib widget` magic command scroll events are **not** detected. **Is there a...

Here's another effect of requiring the canvas size explicitly, but somehow isn't visible unless the plot gets dropped into an ipywidgets layout (e.g. by a downstream package). If the interactive...