8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adaf175 commit b7be421Copy full SHA for b7be421
doc/users/next_whats_new/update_features.rst
@@ -0,0 +1,4 @@
1
+Miscellaneous Changes
2
+---------------------
3
+
4
+- The `matplotlib.ticker.ScalarFormatter` class has gained a new instantiating parameter ``usetex``.
lib/matplotlib/ticker.pyi
@@ -69,9 +69,11 @@ class ScalarFormatter(Formatter):
69
) -> None: ...
70
offset: float
71
def get_usetex(self) -> bool: ...
72
- def set_usetex(self, val: bool | float) -> None: ...
+ def set_usetex(self, val: bool) -> None: ...
73
@property
74
def usetex(self) -> bool: ...
75
+ @usetex.setter
76
+ def usetex(self, val: bool) -> None: ...
77
def get_useOffset(self) -> bool: ...
78
def set_useOffset(self, val: bool | float) -> None: ...
79
0 commit comments