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 c3c1a2c commit 633ce72Copy full SHA for 633ce72
2 files changed
CHANGELOG
@@ -1,3 +1,5 @@
1
+2008-06-27 Fixed tick positioning bug - MM
2
+
3
2008-06-27 Fix dashed text bug where text was at the wrong end of the
4
dash - MGD
5
lib/matplotlib/text.py
@@ -939,15 +939,17 @@ def set_x(self, x):
939
940
ACCEPTS: float
941
"""
942
- self._dashx = float(x)
+ self._x = float(x)
943
+ self._dashx = self._x
944
945
def set_y(self, y):
946
947
Set the y position of the TextWithDash.
948
949
950
- self._dashy = float(y)
951
+ self._y = float(y)
952
+ self._dashy = self._y
953
954
def set_transform(self, t):
955
0 commit comments