Beispiel #1
0
 def top_left_letter(self, stuff, s, loc=(0, 1), **args):
     annotations.annotate(self,
                          stuff,
                          s,
                          loc,
                          ha='right',
                          bold=True,
                          **args)
Beispiel #2
0
 def panel_label(self,
                 stuff,
                 s,
                 xy=(-.01, 1.01),
                 size='large',
                 ha='right',
                 bold=True,
                 **args):
     annotations.annotate(self,
                          stuff,
                          s,
                          xy,
                          size=size,
                          ha=ha,
                          bold=bold,
                          **args)
Beispiel #3
0
 def top_left_letter(self, stuff, s, xy=(0, 1.), bold=True, fontsize=None):
     if fontsize is None:
         fontsize = self.fontsize + 1
     args = dict(bold=bold, fontsize=fontsize, xycoords='axes fraction')
     annotations.annotate(self, stuff, s, xy, **args, ha='right')
Beispiel #4
0
 def annotate(self, stuff, s, xy, **args):
     annotations.annotate(self, stuff, s, xy, **args)