Skip to content

Commit 289284a

Browse files
committed
changed the formatter limits from -5,5 to -5,6
1 parent 925da2b commit 289284a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Reduced default value of `axes.formatter.limits`
22
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
33

4-
Changed the default value of `axes.formatter.limits` from -7, 7 to -5, 5 for better readability.
4+
Changed the default value of `axes.formatter.limits` from -7, 7 to -5, 6 for better readability.

lib/matplotlib/rcsetup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1145,7 +1145,7 @@ def _validate_linestyle(ls):
11451145
'axes.labelpad': [4.0, validate_float], # space between label and axis
11461146
'axes.labelweight': ['normal', validate_string], # fontsize of the x any y labels
11471147
'axes.labelcolor': ['black', validate_color], # color of axis label
1148-
'axes.formatter.limits': [[-5, 5], validate_nseq_int(2)],
1148+
'axes.formatter.limits': [[-5, 6], validate_nseq_int(2)],
11491149
# use scientific notation if log10
11501150
# of the axis range is smaller than the
11511151
# first or larger than the second

0 commit comments

Comments
 (0)