-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Displayed matplotlib figures get grey background since 1.0 #4307
Copy link
Copy link
Closed
Milestone
Description
If you display matplotlib figures with display(fig) or just by returning fig (so without the inline backend enabled), these figures have a grey background color in the border (as the figures also have in the seperate matplotlib figure window when interactive plotting is on) since 1.0.
See eg:
- With IPython 1.0: http://nbviewer.ipython.org/5868420/ipython-figure-grey-background.ipynb
- With IPython 0.13 (white background): http://nbviewer.ipython.org/5868420/ipython-figure-grey-background-0.13.ipynb
Is this a deliberate change? I think the previous white background was better for in the notebook.
You can change this manually if you set in the beginning of each notebook: matplotlib.rcParams['figure.facecolor'] = 'w'
Reactions are currently unavailable