Skip to content
Snippets Groups Projects
Commit 9fd9f952 authored by Michele Maris's avatar Michele Maris
Browse files

u

parent 6932b6fc
No related merge requests found
...@@ -267,6 +267,10 @@ class StandardFig() : ...@@ -267,6 +267,10 @@ class StandardFig() :
from matplotlib import pyplot as plt from matplotlib import pyplot as plt
aa=plt.gca().get_yticklabels() if ax is None else ax.get_yticklabels() aa=plt.gca().get_yticklabels() if ax is None else ax.get_yticklabels()
for k in aa : k.set_fontsize(self.fontsize_ticks) for k in aa : k.set_fontsize(self.fontsize_ticks)
def gridspec(self,nrows,ncols,**kargs) :
""" generates a GridSpec array. See matplotlib.gridspec.GridSpec """
import matplotlib.gridspec as gridspec
return gridspec.GridSpec(nrows,ncols,**kargs)
# #
# metadata PROPERTIES # metadata PROPERTIES
@property @property
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment