Thanks to visit codestin.com Credit goes to github.com
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 86424bf commit de8bc4dCopy full SHA for de8bc4d
1 file changed
lib/matplotlib/ticker.py
@@ -1077,7 +1077,8 @@ def __call__(self):
1077
b = self._transform.base
1078
1079
vmin, vmax = self.axis.get_view_interval()
1080
- vmin, vmax = self._transform.transform_point((vmin, vmax))
+ vmin, vmax = self._transform.transform((vmin, vmax))
1081
+
1082
if vmax<vmin:
1083
vmin, vmax = vmax, vmin
1084
numdec = math.floor(vmax)-math.ceil(vmin)
0 commit comments