Every line of 'suptitle matplotlib' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
97 def title(self, title, x=0.5, y=0.95, fontsize=14, **keywords): 98 pylab.figure(num=self.figure.number) 99 pylab.figtext(x, y, title, fontsize=fontsize, **keywords)
402 def setTitle(self, title=''): 403 """Set the title at the top of graph""" 404 self.title = title
518 def set_suptitle(self, txt, a=None, size=None, color=None): 519 info = self.getp('suptitle_labelinfo') 520 info[0] = txt 521 if size is not None: info[-1] = size 522 if color is not None: info[1] = color 523 if self._title_artist is not None: 524 self._title_artist.set_text(txt) 525 if info[-1] != 'default': self._title_artist.set_size(info[-1]) 526 if info[1] != 'default': self._title_artist.set_color(info[1])