File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -141,20 +141,23 @@ def set_pane_pos(self, xys):
141
141
xys = np .asarray (xys )
142
142
xys = xys [:,:2 ]
143
143
self .pane .xy = xys
144
+ self .stale = True
144
145
145
146
def set_pane_color (self , color ):
146
147
'''Set pane color to a RGBA tuple'''
147
148
self ._axinfo ['color' ] = color
148
149
self .pane .set_edgecolor (color )
149
150
self .pane .set_facecolor (color )
150
151
self .pane .set_alpha (color [- 1 ])
152
+ self .stale = True
151
153
152
154
def set_rotate_label (self , val ):
153
155
'''
154
156
Whether to rotate the axis label: True, False or None.
155
157
If set to None the label will be rotated if longer than 4 chars.
156
158
'''
157
159
self ._rotate_label = val
160
+ self .stale = True
158
161
159
162
def get_rotate_label (self , text ):
160
163
if self ._rotate_label is not None :
@@ -416,6 +419,7 @@ def draw(self, renderer):
416
419
tick .draw (renderer )
417
420
418
421
renderer .close_group ('axis3d' )
422
+ self .stale = False
419
423
420
424
def get_view_interval (self ):
421
425
"""return the Interval instance for this 3d axis view limits"""
You can’t perform that action at this time.
0 commit comments