Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « matplotlib.axis »

Classe « Tick »

Informations générales

Héritage

builtins.object
    Artist
        Tick

Définition

class Tick(Artist):

Description [extrait de Tick.__doc__]

    Abstract base class for the axis ticks, grid lines and labels.

    Ticks mark a position on an Axis. They contain two lines as markers and
    two labels; one each for the bottom and top positions (in case of an
    `.XAxis`) or for the left and right positions (in case of a `.YAxis`).

    Attributes
    ----------
    tick1line : `.Line2D`
        The left/bottom tick marker.
    tick2line : `.Line2D`
        The right/top tick marker.
    gridline : `.Line2D`
        The grid line associated with the label position.
    label1 : `.Text`
        The left/bottom tick label.
    label2 : `.Text`
        The right/top tick label.

    

Constructeur(s)

Signature du constructeur Description
__init__(self, axes, loc, label=<deprecated parameter>, size=None, width=None, color=None, tickdir=None, pad=None, labelsize=None, labelcolor=None, zorder=None, gridOn=None, tick1On=True, tick2On=True, label1On=True, label2On=False, major=True, labelrotation=0, grid_color=None, grid_linestyle=None, grid_linewidth=None, grid_alpha=None, **kw)

Liste des attributs statiques

Nom de l'attribut Valeur
zorder0

Liste des propriétés

Nom de la propriétéDescription
axesThe `~.axes.Axes` instance the artist resides in, or *None*. [extrait de __doc__]
label[*Deprecated*] [extrait de __doc__]
mouseover
stale
sticky_edges

Liste des opérateurs

Opérateurs hérités de la classe object

__eq__, __ge__, __gt__, __le__, __lt__, __ne__

Liste des méthodes

Toutes les méthodes Méthodes d'instance Méthodes statiques Méthodes dépréciées
Signature de la méthodeDescription
apply_tickdir(self, tickdir) Set tick direction. Valid values are 'out', 'in', 'inout'. [extrait de apply_tickdir.__doc__]
contains(self, mouseevent)
draw(self, renderer)
get_children(self)
get_loc(self) Return the tick location (data coords) as a scalar. [extrait de get_loc.__doc__]
get_pad(self) Get the value of the tick label pad in points. [extrait de get_pad.__doc__]
get_pad_pixels(self)
get_tick_padding(self) Get the length of the tick outside of the axes. [extrait de get_tick_padding.__doc__]
get_tickdir(self)
get_view_interval(self)
set_clip_path(self, clippath, transform=None)
set_label(self, s)
set_label1(self, s)
set_label2(self, s)
set_pad(self, val)
set_url(self, url)
update_position(self, loc) Set the location of tick in data coords with scalar *loc*. [extrait de update_position.__doc__]

Méthodes héritées de la classe Artist

__getstate__, __init_subclass__, __subclasshook__, add_callback, convert_xunits, convert_yunits, findobj, format_cursor_data, get_agg_filter, get_alpha, get_animated, get_clip_box, get_clip_on, get_clip_path, get_contains, get_cursor_data, get_figure, get_gid, get_in_layout, get_label, get_path_effects, get_picker, get_rasterized, get_sketch_params, get_snap, get_tightbbox, get_transform, get_transformed_clip_path_and_affine, get_url, get_visible, get_window_extent, get_zorder, have_units, is_transform_set, pchanged, pick, pickable, properties, remove, remove_callback, set, set_agg_filter, set_alpha, set_animated, set_clip_box, set_clip_on, set_contains, set_figure, set_gid, set_in_layout, set_path_effects, set_picker, set_rasterized, set_sketch_params, set_snap, set_transform, set_visible, set_zorder, update, update_from

Méthodes héritées de la classe object

__delattr__, __dir__, __format__, __getattribute__, __hash__, __init_subclass__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__