@@ -238,7 +238,7 @@ Object containers
238
238
239
239
240
240
Now that we know how to inspect and set the properties of a given
241
- object we want to configure, we need to now how to get at that object.
241
+ object we want to configure, we need to know how to get at that object.
242
242
As mentioned in the introduction, there are two kinds of objects:
243
243
primitives and containers. The primitives are usually the things you
244
244
want to configure (the font of a :class: `~matplotlib.text.Text `
@@ -497,7 +497,7 @@ containers will be detailed below, but note that the ``Axes`` contains
497
497
many helper methods which forward calls on to the
498
498
:class: `~matplotlib.axis.Axis ` instances so you often do not need to
499
499
work with them directly unless you want to. For example, you can set
500
- the font size of the ``XAxis `` ticklabels using the ``Axes `` helper
500
+ the font color of the ``XAxis `` ticklabels using the ``Axes `` helper
501
501
method::
502
502
503
503
for label in ax.get_xticklabels():
@@ -544,8 +544,8 @@ ticklabels. Because the ticks are dynamically created as needed (e.g., when
544
544
panning and zooming), you should access the lists of major and minor ticks
545
545
through their accessor methods :meth: `~matplotlib.axis.Axis.get_major_ticks `
546
546
and :meth: `~matplotlib.axis.Axis.get_minor_ticks `. Although the ticks contain
547
- all the primitives and will be covered below, the ``Axis `` methods contain
548
- accessor methods to return the tick lines, tick labels, tick locations etc.:
547
+ all the primitives and will be covered below, ``Axis `` instances have accessor
548
+ methods that return the tick lines, tick labels, tick locations etc.:
549
549
550
550
.. sourcecode :: ipython
551
551
@@ -625,11 +625,11 @@ tick2line Line2D instance
625
625
gridline Line2D instance
626
626
label1 Text instance
627
627
label2 Text instance
628
- gridOn boolean which determines whether to draw the tickline
628
+ gridOn boolean which determines whether to draw the gridline
629
629
tick1On boolean which determines whether to draw the 1st tickline
630
630
tick2On boolean which determines whether to draw the 2nd tickline
631
- label1On boolean which determines whether to draw tick label
632
- label2On boolean which determines whether to draw tick label
631
+ label1On boolean which determines whether to draw the 1st tick label
632
+ label2On boolean which determines whether to draw the 2nd tick label
633
633
============== ==========================================================
634
634
635
635
Here is an example which sets the formatter for the right side ticks with
0 commit comments