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 Line2D instance with x and y data in sequences xdata, ydata
source code
 
set_figure(self, figure)
Set the figure instance the artist belong to
source code
 
set_axes(self, axes)
set the axes instance the artist resides in, 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_linestyle, get_linewidth, get_ls, get_lw, get_marker, get_markeredgecolor, get_markeredgewidth, get_markerfacecolor, get_markersize, get_mec, get_mew, get_mfc, get_ms, get_pickradius, get_solid_capstyle, get_solid_joinstyle, get_window_extent, get_xdata, get_ydata, is_dashed, recache, set_aa, set_antialiased, set_c, set_color, set_dash_capstyle, set_dash_joinstyle, set_dashes, set_linestyle, set_linewidth, set_ls, set_lw, set_marker, set_markeredgecolor, set_markeredgewidth, set_markerfacecolor, set_markersize, 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_nothing, _draw_pentagon, _draw_pixel, _draw_plus, _draw_point, _draw_solid, _draw_square, _draw_steps, _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_plottable, _get_rgb_face, _is_sorted

Inherited from matplotlib.artist.Artist: add_callback, convert_xunits, convert_yunits, get_alpha, get_animated, get_axes, get_clip_box, get_clip_on, get_clip_path, get_contains, get_figure, get_label, get_picker, get_transform, get_visible, get_zorder, have_units, hitlist, is_figure_set, is_transform_set, pchanged, pick, pickable, remove, remove_callback, set, set_alpha, set_animated, set_clip_box, set_clip_on, set_clip_path, set_contains, set_label, set_lod, set_visible, set_zorder, update

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

Class Variables [hide private]

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

Inherited from matplotlib.lines.Line2D (private): _lineStyles, _markers

Inherited from matplotlib.artist.Artist: aname

Method Details [hide private]

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

source code 

Create a Line2D instance with x and y data in sequences xdata,
ydata

The kwargs are Line2D properties:
  alpha: float
  animated: [True | False]
  antialiased or aa: [True | False]
  clip_box: a matplotlib.transform.Bbox instance
  clip_on: [True | False]
  color or c: any matplotlib color
  dash_capstyle: ['butt' | 'round' | 'projecting']
  dash_joinstyle: ['miter' | 'round' | 'bevel']
  dashes: sequence of on/off ink in points
  data: (npy.array xdata, npy.array ydata)
  figure: a matplotlib.figure.Figure instance
  label: any string
  linestyle or ls: [ '-' | '--' | '-.' | ':' | 'steps' | 'None' | ' ' | '' ]
  linewidth or lw: float value in points
  lod: [True | False]
  marker: [ '+' | ',' | '.' | '1' | '2' | '3' | '4'
  markeredgecolor or mec: any matplotlib color
  markeredgewidth or mew: float value in points (default 5)
  markerfacecolor or mfc: any matplotlib color
  markersize or ms: float
  pickradius: mouse event radius for pick items in points (default 5)
  solid_capstyle: ['butt' | 'round' |  'projecting']
  solid_joinstyle: ['miter' | 'round' | 'bevel']
  transform: a matplotlib.transform transformation instance
  visible: [True | False]
  xdata: npy.array
  ydata: npy.array
  zorder: any number

Overrides: matplotlib.artist.Artist.__init__

set_figure(self, figure)

source code 

Set the figure instance the artist belong to

ACCEPTS: a matplotlib.figure.Figure instance

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

set_axes(self, axes)

source code 

set the axes instance the artist resides in, if any

ACCEPTS: an 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 matplotlib.transform transformation instance

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

set_data(self, x, y)

source code 

Set the x and y data

ACCEPTS: (npy.array xdata, npy.array ydata)

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

draw(self, renderer)

source code 

Derived classes drawing method

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