On this page
matplotlib.axis.YTick.findobj
YTick.findobj(self, match=None, include_self=True)- 
    
Find artist objects.
Recursively find all
Artistinstances contained in the artist.Parameters: - match
 - 
           
A filter criterion for the matches. This can be
- None: Return all objects contained in artist.
 - A function with signature 
def match(artist: Artist) -> bool. The result will only contain artists for which the function returns True. - A class instance: e.g., 
Line2D. The result will only contain artists of this class or its subclasses (isinstancecheck). 
 - 
           
include_selfbool - 
           
Include self in the list to be checked for a match.
 
Returns: - 
           
artistslist of Artist 
 
© 2012–2018 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
 https://matplotlib.org/3.2.2/api/_as_gen/matplotlib.axis.YTick.findobj.html