So it appears that matplotlib gui plots (a la plt.show()
) don't adapt to monitor resolution and appear tiny on high resolution screens. Is there a matplotlib/tkinter fix or do I have fiddle around somewhere in Windows settings?
Asked
Active
Viewed 463 times
3

Serenity
- 35,289
- 20
- 120
- 115

Lucidnonsense
- 1,195
- 3
- 13
- 35
1 Answers
2
Before plt.show()
call these functions:
mng = plt.get_current_fig_manager()
mng.frame.Maximize(True)
Maybe it solve your issue.

Serenity
- 35,289
- 20
- 120
- 115