Right now, the recursive inheritence diagrams are generated manually, using the following command: ``` python for n in sorted(list(set(dir(maxis.Axis)) - set(dir(matplotlib.artist.Artist)))): print('Axis.' + n) if n[0] != '_' else None ``` See #7176 for more information.