| |
Methods defined here:
- __init__(self, dpi, bbox, xdata, ydata, linewidth=0.5, linestyle='-', color='b', marker=None, markersize=6.0, markeredgecolor=None, markerfacecolor=None, antialiased=True, transx=Transform: Bound1D: 0 1 to Bound1D: 0 1, transy=Transform: Bound1D: 0 1 to Bound1D: 0 1)
- dpi is a DPI instance
bbox is a Bound2D instance with the display bounding box xdata
xdata is a sequence of x data
ydata is a sequence of y data
linewidth is the width of the line in points
linestyle is one of lineStyles
marker is one of lineMarkers or None
markersize is the size of the marker in points
markeredgecolor and markerfacecolor can be any color arg
Public attributes:
transx : a Transorm instance
transy : a Transorm instance
- copy_properties(self, line)
- copy properties from line to self
- get_antialiased(self)
- get_color(self)
- get_label(self)
- get_linestyle(self)
- get_linewidth(self)
- get_marker(self)
- get_markeredgecolor(self)
- get_markerfacecolor(self)
- get_markersize(self)
- get_window_extent(self)
- get_xdata(self)
- get_ydata(self)
- set_antialiased(self, b)
- True if line should be drawin with antialiased rendering
- set_color(self, color)
- set_data(self, x, y)
- set_data_clipping(self, b)
- b is a boolean that sets whether data clipping is on
- set_label(self, s)
- Set the line label to s for auto legend
- set_linestyle(self, s)
- set_linewidth(self, w)
- set_marker(self, marker)
- set_markeredgecolor(self, ec)
- set_markerfacecolor(self, fc)
- set_markersize(self, sz)
- set_vertical_offset(self, voff, transOffset=None)
- set_xclip(self, xmin, xmax)
- set_xdata(self, x)
- set_yclip(self, ymin, ymax)
- set_ydata(self, y)
Methods inherited from matplotlib.artist.Artist:
- draw(self, renderer=None, *args, **kwargs)
- Derived classes drawing method
- get_alpha(self)
- Return the alpha value used for blending - not supported on
all backends
- 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
- get_visible(self)
- return the artist's visiblity
- set_alpha(self, alpha)
- Set the alpha value used for blending - not supported on
all backends
- 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_visible(self, b)
- set the artist's visiblity
Data and other attributes inherited from matplotlib.artist.Artist:
- aname = 'Artist'
|