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 5e2e9c2 commit a524fd7Copy full SHA for a524fd7
1 file changed
lib/mpl_toolkits/mplot3d/art3d.py
@@ -113,6 +113,10 @@ def draw(self, renderer):
113
mtext.Text.draw(self, renderer)
114
self.stale = False
115
116
+ def get_tightbbox(self, renderer):
117
+ # Overwriting the 2d Text behavior which is not valid for 3d.
118
+ # For now, just return None to exclude from layout calculation.
119
+ return None
120
121
def text_2d_to_3d(obj, z=0, zdir='z'):
122
"""Convert a Text to a Text3D object."""
0 commit comments