@@ -3062,28 +3062,27 @@ def set_xticklabels(self, labels, fontdict=None, minor=False, **kwargs):
3062
3062
Parameters
3063
3063
----------
3064
3064
labels : list of str
3065
- list of string labels
3065
+ List of string labels.
3066
3066
3067
3067
fontdict : dict, optional
3068
- A dictionary controlling the appearance of the ticklabels,
3069
- the default `fontdict` is:
3068
+ A dictionary controlling the appearance of the ticklabels.
3069
+ The default `fontdict` is: :
3070
3070
3071
3071
{'fontsize': rcParams['axes.titlesize'],
3072
- 'fontweight' : rcParams['axes.titleweight'],
3072
+ 'fontweight': rcParams['axes.titleweight'],
3073
3073
'verticalalignment': 'baseline',
3074
3074
'horizontalalignment': loc}
3075
3075
3076
3076
minor : bool, optional
3077
- If True select the minor ticklabels,
3078
- else select the minor ticklabels
3077
+ Whether to set the minor ticklabels rather than the major ones.
3079
3078
3080
3079
Returns
3081
3080
-------
3082
- A list of `~matplotlib.text. Text` instances
3081
+ A list of `~. Text` instances.
3083
3082
3084
3083
Other Parameters
3085
3084
-----------------
3086
- **kwargs : `~matplotlib.text .Text` properties.
3085
+ **kwargs : `~.Text` properties.
3087
3086
"""
3088
3087
if fontdict is not None :
3089
3088
kwargs .update (fontdict )
@@ -3385,25 +3384,24 @@ def set_yticklabels(self, labels, fontdict=None, minor=False, **kwargs):
3385
3384
list of string labels
3386
3385
3387
3386
fontdict : dict, optional
3388
- A dictionary controlling the appearance of the ticklabels,
3389
- the default `fontdict` is::
3387
+ A dictionary controlling the appearance of the ticklabels.
3388
+ The default `fontdict` is::
3390
3389
3391
3390
{'fontsize': rcParams['axes.titlesize'],
3392
- 'fontweight' : rcParams['axes.titleweight'],
3391
+ 'fontweight': rcParams['axes.titleweight'],
3393
3392
'verticalalignment': 'baseline',
3394
3393
'horizontalalignment': loc}
3395
3394
3396
3395
minor : bool, optional
3397
- If True select the minor ticklabels,
3398
- else select the minor ticklabels
3396
+ Whether to set the minor ticklabels rather than the major ones.
3399
3397
3400
3398
Returns
3401
3399
-------
3402
- A list of `~matplotlib.text .Text` instances.
3400
+ A list of `~.Text` instances.
3403
3401
3404
3402
Other Parameters
3405
3403
----------------
3406
- **kwargs : `~matplotlib.text .Text` properties.
3404
+ **kwargs : `~.Text` properties.
3407
3405
"""
3408
3406
if fontdict is not None :
3409
3407
kwargs .update (fontdict )
0 commit comments