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 316ae24 commit 68e4f80Copy full SHA for 68e4f80
2 files changed
CHANGELOG
@@ -1,3 +1,6 @@
1
+2008-06-27 Fix dashed text bug where text was at the wrong end of the
2
+ dash - MGD
3
+
4
2008-06-26 Fix mathtext bug for expressions like $x_{\leftarrow}$ - MGD
5
6
2008-06-26 Fix direction of horizontal/vertical hatches - MGD
lib/matplotlib/text.py
@@ -745,8 +745,8 @@ def __init__(self,
745
746
def get_position(self):
747
"Return x, y as tuple"
748
- x = float(self.convert_xunits(self._dashx))
749
- y = float(self.convert_yunits(self._dashy))
+ x = float(self.convert_xunits(self._x))
+ y = float(self.convert_yunits(self._y))
750
return x, y
751
752
def get_prop_tup(self):
0 commit comments