File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -1065,6 +1065,17 @@ Z-order
1065
1065
1066
1066
1067
1067
1068
+ ``ScalarFormatter `` tick label formatting with offsets
1069
+ ======================================================
1070
+
1071
+ With the default of ``rcParams['axes.formatter.useoffset'] = True ``,
1072
+ an offset will be used when it will save 4 or more digits. This can
1073
+ be controlled with the new rcParam, ``axes.formatter.offset_threshold ``.
1074
+ To restore the previous behavior of using an offset to save 2 or more
1075
+ digits, use ``rcParams['axes.formatter.offset_threshold'] = 2 ``.
1076
+
1077
+
1078
+
1068
1079
``AutoDateFormatter `` format strings
1069
1080
====================================
1070
1081
Original file line number Diff line number Diff line change @@ -82,13 +82,16 @@ New rcparams added
82
82
| `ytick.minor.right`, | |
83
83
| `ytick.major.right` | |
84
84
+---------------------------------+--------------------------------------------------+
85
- | `hist.bins` | the default number of bins to use in |
85
+ | `hist.bins` | The default number of bins to use in |
86
86
| | `~matplotlib.axes.Axes.hist `. This can be an |
87
87
| | `int `, a list of floats, or ``'auto' `` if numpy |
88
88
| | >= 1.11 is installed. |
89
89
+---------------------------------+--------------------------------------------------+
90
- | `lines.scale_dashes` | If the line dash patterns should scale with |
91
- | | linewidth |
90
+ | `lines.scale_dashes` | Whether the line dash patterns should scale with |
91
+ | | linewidth. |
92
+ +---------------------------------+--------------------------------------------------+
93
+ | `axes.formatter.offset_threshold`| Minimum number of digits saved in tick labels |
94
+ | | that triggers using an offset. |
92
95
+---------------------------------+--------------------------------------------------+
93
96
94
97
You can’t perform that action at this time.
0 commit comments