On Pycharm plot window, Matplotlib graph not works in fullview window. But It works in preview window

Screen Shot below.

Graph is not works on full window. But It works on preview window.(right side of the picture) 

Also graph Image Save as file is working normally. And graph in the file is normal.

What is the problem? I reinstalled pycharm but it doesn't works.

(I use interactive mode, but It does not work in both (interactive & not interactive)

0
4 comments
Is the issue reproduced on a simple plot like the following?

```
import matplotlib.pyplot as plt
plt.style.use('dark_background')
plt.plot([1,2,3,4])
plt.ylabel('some numbers')
plt.show()
```

If the issue is code-specific, please provide your code sample to reproduce the issue.
0

Andrey Resler I have the same issue. Running the code you suggested has the same result

0

I am having the same issue. The previewed plots are not correct. But small graph on the right are correct.

0

I am having the same issue too. It works for any plotting code

0

Please sign in to leave a comment.