mpl_toolkits.axisartist.axis_artist.Ticks¶
-
class
mpl_toolkits.axisartist.axis_artist.
Ticks
(ticksize, tick_out=False, *, axis=None, **kwargs)[source]¶ Bases:
mpl_toolkits.axisartist.axis_artist.AttributeCopier
,matplotlib.lines.Line2D
Ticks are derived from Line2D, and note that ticks themselves are markers. Thus, you should use set_mec, set_mew, etc.
To change the tick size (length), you need to use set_ticksize. To change the direction of the ticks (ticks are in opposite direction of ticklabels by default), use set_tick_out(False).
[Deprecated]
Notes
Deprecated since version 3.2:
-
__init__
(self, ticksize, tick_out=False, *, axis=None, **kwargs)[source]¶ [Deprecated]
Notes
Deprecated since version 3.2:
-
__module__
= 'mpl_toolkits.axisartist.axis_artist'¶
-
draw
(self, renderer)[source]¶ Draw the Artist (and its children) using the given renderer.
This has no effect if the artist is not visible (
Artist.get_visible
returns False).Parameters: - renderer
RendererBase
subclass.
Notes
This method is overridden in the Artist subclasses.
- renderer
-
get_markeredgecolor
(self)[source]¶ Return the marker edge color.
See also
set_markeredgecolor
.
-
get_markeredgewidth
(self)[source]¶ Return the marker edge width in points.
See also
set_markeredgewidth
.
-