I am trying to increase the thickness of all the graphs in the subplots arranged in 3x1 fashion. Using some previous block/thread in this website I found that something this works for a single graph, I tried this also, but unfortunately it is increasing the thickness of a single subplot instead of all the subplots
ax = fig1.gca()
for axis in ['top','bottom','left','right']:
ax.spines[axis].set_linewidth(1.5)
Could any one please comment/suggest anything. Thanks in advance