@@ -566,23 +566,24 @@ class in the Matplotlib API, and the one you will be working with most
566
566
# for label in ax.get_xticklabels():
567
567
# label.set_color('orange')
568
568
#
569
- # Below is a summary of the Artists that the Axes contains
569
+ # Below is a summary of the Artists that the `. Axes` contains
570
570
#
571
571
# ============== =========================================
572
572
# Axes attribute Description
573
573
# ============== =========================================
574
- # artists A list of `.Artist` instances
574
+ # artists An `.ArtistList` of `.Artist` instances
575
575
# patch `.Rectangle` instance for Axes background
576
- # collections A list of `.Collection` instances
577
- # images A list of `.AxesImage`
578
- # legends A list of `.Legend` instances
579
- # lines A list of `.Line2D` instances
580
- # patches A list of `.Patch` instances
581
- # texts A list of `.Text` instances
576
+ # collections An `.ArtistList` of `.Collection` instances
577
+ # images An `.ArtistList` of `.AxesImage`
578
+ # lines An `.ArtistList` of `.Line2D` instances
579
+ # patches An `.ArtistList` of `.Patch` instances
580
+ # texts An `.ArtistList` of `.Text` instances
582
581
# xaxis A `matplotlib.axis.XAxis` instance
583
582
# yaxis A `matplotlib.axis.YAxis` instance
584
583
# ============== =========================================
585
584
#
585
+ # The legend can be accessed by `~.Axes.get_legend`,
586
+ #
586
587
# .. _axis-container:
587
588
#
588
589
# Axis containers
0 commit comments