@header@
 
 
matplotlib.figure
index
/matplotlib/figure.py

 
Classes
       
matplotlib.artist.Artist
Figure

 
class Figure(matplotlib.artist.Artist)
     Methods defined here:
__init__(self, figsize, dpi, facecolor=0.75, edgecolor='w')
paper size is a w,h tuple in inches
DPI is dots per inch
add_axis(self, a)
clear(self)
copy_properties(self, other)
get_axes(self)
get_edgecolor(self)
Get the edge color of the Figure rectangle
get_facecolor(self)
Get the face color of the Figure rectangle
get_window_extent(self, renderer=None)
Return the window extent of the figure
set_edgecolor(self, color)
Set the edge color of the Figure rectangle
set_facecolor(self, color)
Set the face color of the Figure rectangle
text(self, x, y, s, *args, **kwargs)
Add text to figure at location x,y (relative 0-1 coords) See
the help for Axis text for the meaning of the other arguments

Methods inherited from matplotlib.artist.Artist:
draw(self, renderer=None, *args, **kwargs)
Derived classes drawing method
get_child_artists(self)
Return all artists contained in self
get_clip_on(self)
Return whether artist uses clipping
get_dpi(self)
Get the DPI of the display
set_child_attr(self, attr, val)
Set attribute attr for self, and all child artists
set_clip_on(self, b)
Set whether artist is clipped to bbox
set_lod(self, on)
Set Level of Detail on or off.  If on, the artists may examine
things like the pixel width of the axes and draw a subset of
their contents accordingly
set_transform(self, transform)
Set the artist transform for self and all children

Data and other attributes inherited from matplotlib.artist.Artist:
aname = 'Artist'

@footer@