Hi all,
Today, i updated to spyder 6.0.1 on Win 10, from version 5.x.x.
All is working well, except the inline plot (PNG format) looks not as usual.
The part outside the plot is transparent.
Such that, it's hard to read.
Before update, it wasn't like that, and i always use dark mode as before.
See attachment/below:
code to reproduce:
from matplotlib import pyplot as plt
A=[1,2,3,4,5]
B=[1,2,3,4,5]
fig, ax = plt.subplots(figsize=(4, 3), dpi=300) #the figsize and dpi doesn't matter
ax.plot(A,B)
version:
* Spyder version: 6.0.1 (standalone)
* Python version: 3.11.9 64-bit
* Qt version: 5.15.8
* PyQt5 version: 5.15.9
* Operating System: Windows-10-10.0.19045-SP0
I think transparent plot is correct, but usually spyder display it with white background for all part of the plot, such that we can read what's on the axis, as in v5.x.x.
is it a bug? Thank you.
Best regards,
Tetuko