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 b2dfa40 commit b5652bfCopy full SHA for b5652bf
1 file changed
lib/matplotlib/tests/test_scale.py
@@ -77,7 +77,8 @@ def test_extra_kwargs_raise():
77
def test_logscale_invert_transform():
78
fig, ax = plt.subplots()
79
ax.set_yscale('log')
80
- tform = ax.transData.inverted()
+ # get transformation from data to axes
81
+ tform = (ax.transAxes + ax.transData.inverted()).inverted()
82
83
def test_logscale_transform_repr():
84
0 commit comments