Package omero :: Package install :: Module logs_library :: Class MyLine
[hide private]
[frames] | no frames]

Class MyLine

source code


Instance Methods [hide private]
 
__init__(self, *args, **kwargs)
Create a :class:`~matplotlib.lines.Line2D` instance with *x* and *y* data in sequences *xdata*, *ydata*.
source code
 
set_figure(self, figure)
Set the :class:`~matplotlib.figure.Figure` instance the artist belongs to.
source code
 
set_axes(self, axes)
Set the :class:`~matplotlib.axes.Axes` instance in which the artist resides, if any.
source code
 
set_transform(self, transform)
set the Transformation instance used by this artist
source code
 
set_data(self, x, y)
Set the x and y data
source code
 
draw(self, renderer)
Derived classes drawing method
source code

Inherited from matplotlib.lines.Line2D: __str__, contains, get_aa, get_antialiased, get_c, get_color, get_dash_capstyle, get_dash_joinstyle, get_data, get_drawstyle, get_fillstyle, get_linestyle, get_linewidth, get_ls, get_lw, get_marker, get_markeredgecolor, get_markeredgewidth, get_markerfacecolor, get_markersize, get_markevery, get_mec, get_mew, get_mfc, get_ms, get_path, get_pickradius, get_solid_capstyle, get_solid_joinstyle, get_window_extent, get_xdata, get_xydata, get_ydata, is_dashed, recache, set_aa, set_antialiased, set_c, set_color, set_dash_capstyle, set_dash_joinstyle, set_dashes, set_drawstyle, set_fillstyle, set_linestyle, set_linewidth, set_ls, set_lw, set_marker, set_markeredgecolor, set_markeredgewidth, set_markerfacecolor, set_markersize, set_markevery, set_mec, set_mew, set_mfc, set_ms, set_picker, set_pickradius, set_solid_capstyle, set_solid_joinstyle, set_xdata, set_ydata, update_from

Inherited from matplotlib.lines.Line2D (private): _draw_caretdown, _draw_caretleft, _draw_caretright, _draw_caretup, _draw_circle, _draw_dash_dot, _draw_dashed, _draw_diamond, _draw_dotted, _draw_hexagon1, _draw_hexagon2, _draw_hline, _draw_lines, _draw_nothing, _draw_pentagon, _draw_pixel, _draw_plus, _draw_point, _draw_solid, _draw_square, _draw_star, _draw_steps_mid, _draw_steps_post, _draw_steps_pre, _draw_thin_diamond, _draw_tickdown, _draw_tickleft, _draw_tickright, _draw_tickup, _draw_tri_down, _draw_tri_left, _draw_tri_right, _draw_tri_up, _draw_triangle_down, _draw_triangle_left, _draw_triangle_right, _draw_triangle_up, _draw_vline, _draw_x, _get_rgb_face, _is_sorted, _transform_path

Inherited from matplotlib.artist.Artist: add_callback, convert_xunits, convert_yunits, findobj, get_alpha, get_animated, get_axes, get_children, get_clip_box, get_clip_on, get_clip_path, get_contains, get_figure, get_gid, get_label, get_picker, get_rasterized, get_snap, get_transform, get_transformed_clip_path_and_affine, get_url, get_visible, get_zorder, have_units, hitlist, is_figure_set, is_transform_set, pchanged, pick, pickable, properties, remove, remove_callback, set, set_alpha, set_animated, set_clip_box, set_clip_on, set_clip_path, set_contains, set_gid, set_label, set_lod, set_rasterized, set_snap, set_url, set_visible, set_zorder, update

Inherited from matplotlib.artist.Artist (private): _set_gc_clip

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __subclasshook__

Class Variables [hide private]

Inherited from matplotlib.lines.Line2D: drawStyles, filled_markers, lineStyles, markers, validCap, validJoin, zorder

Inherited from matplotlib.lines.Line2D (private): _caret_path, _drawStyles_l, _drawStyles_s, _draw_pixel_transform, _lineStyles, _line_marker_path, _markers, _plus_path, _tickhoriz_path, _tickvert_path, _tri_path, _triangle_path, _x_path

Inherited from matplotlib.artist.Artist: aname

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, *args, **kwargs)
(Constructor)

source code 

Create a :class:`~matplotlib.lines.Line2D` instance with *x* and *y* data in sequences *xdata*, *ydata*.

The kwargs are :class:`~matplotlib.lines.Line2D` properties:

%(Line2D)s

See :meth:`set_linestyle` for a decription of the line styles, :meth:`set_marker` for a description of the markers, and :meth:`set_drawstyle` for a description of the draw styles.

Overrides: object.__init__
(inherited documentation)

set_figure(self, figure)

source code 

Set the :class:`~matplotlib.figure.Figure` instance the artist belongs to.

ACCEPTS: a :class:`matplotlib.figure.Figure` instance

Overrides: matplotlib.artist.Artist.set_figure
(inherited documentation)

set_axes(self, axes)

source code 

Set the :class:`~matplotlib.axes.Axes` instance in which the artist resides, if any.

ACCEPTS: an :class:`~matplotlib.axes.Axes` instance

Overrides: matplotlib.artist.Artist.set_axes
(inherited documentation)

set_transform(self, transform)

source code 

set the Transformation instance used by this artist

ACCEPTS: a :class:`matplotlib.transforms.Transform` instance

Overrides: matplotlib.artist.Artist.set_transform
(inherited documentation)

set_data(self, x, y)

source code 

Set the x and y data

ACCEPTS: 2D array

Overrides: matplotlib.lines.Line2D.set_data
(inherited documentation)

draw(self, renderer)

source code 

Derived classes drawing method

Overrides: matplotlib.artist.Artist.draw
(inherited documentation)