You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description of expected behavior and the observed behavior
matplotlib interactive (ipympl) cannot be shown with error: 500: Internal Server Error. Also, on documentation page, interactive plot cannot be shown as well
Complete, minimal, self-contained example code that reproduces the issue
importmatplotlib.pyplotaspltimportnumpyasnpimportpanelaspnfig=plt.Figure(figsize=(8, 6))
ax=fig.add_subplot(111)
dx, dy=0.05, 0.05# generate 2 2d grids for the x & y boundsy, x=np.mgrid[slice(1, 5+dy, dy),
slice(1, 5+dx, dx)]
z=np.sin(x)**10+np.cos(10+y*x) *np.cos(x)
cf=ax.contourf(x+dx/2., y+dy/2., z)
fig.colorbar(cf, ax=ax)
pn_fig=pn.pane.Matplotlib(fig, interactive=False)
pn.serve(pn_fig)
Screenshots or screencasts of the bug in action
The text was updated successfully, but these errors were encountered:
ALL software version info
Software Version Info
Description of expected behavior and the observed behavior
matplotlib interactive (ipympl) cannot be shown with error: 500: Internal Server Error. Also, on documentation page, interactive plot cannot be shown as well
Complete, minimal, self-contained example code that reproduces the issue
Screenshots or screencasts of the bug in action
The text was updated successfully, but these errors were encountered: