How to change border width of a matplotlib graph

Maybe this is what you are looking for? It sets the value globally.

import matplotlib as mpl

mpl.rcParams['axes.linewidth'] = 0.1

Leave a Comment