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:
rendererRendererBase subclass.
get_color(self)[source]

Return the line color.

See also set_color.

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.

get_ref_artist(self)[source]

Return the underlying artist that actually defines some properties (e.g., color) of this artist.

get_tick_out(self)[source]

Return whether ticks are drawn inside or outside the axes.

get_ticksize(self)[source]

Return length of the ticks in points.

set_locs_angles(self, locs_angles)[source]
set_tick_out(self, b)[source]

Set whether ticks are drawn inside or outside the axes.

set_ticksize(self, ticksize)[source]

Set length of the ticks in points.