33a34
> from matplotlib.ticker import NullLocator
123,124d123
< need_subticks = True
<
127d125
< print cshape
131d128
< need_subticks = False
147,148c144,149
< if need_subticks:
< self.metaaxes = self.figure.add_axes(self.figure_size)
---
> if self.xsubticks is not None:
> color = self.figure.get_facecolor()
> self.metaaxes = self.figure.add_axes(self.figure_size, axisbg=color, frameon=False)
> for tick in self.metaaxes.xaxis.majorTicks:
> tick.tick1On = False
> tick.tick2On = False
153c154
< size[1] = self.figure_size[1] + .075
---
> size[1] = self.figure_size[1] + .05
155c156
< size[3] = self.figure_size[3] - .075
---
> size[3] = self.figure_size[3] - .05
204a206
>
208a211
>
282c285
< if len(myshape) > 1:
---
> if len(myshape) > 2: