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:
-
draw
(self, renderer)[source]¶ Draw the Artist using the given renderer.
This method will be overridden in the Artist subclasses. Typically, it is implemented to not have any effect if the Artist is not visible (
Artist.get_visible
is False).Parameters: - renderer
RendererBase
subclass.
- 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
.
-