@@ -198,18 +198,21 @@ def _set_labelrotation(self, labelrotation):
198
198
_api .check_in_list (['auto' , 'default' ], labelrotation = mode )
199
199
self ._labelrotation = (mode , angle )
200
200
201
+ @property
202
+ def _pad (self ):
203
+ return self ._base_pad + self .get_tick_padding ()
204
+
201
205
def _apply_tickdir (self , tickdir ):
202
206
"""Set tick direction. Valid values are 'out', 'in', 'inout'."""
203
- # This method is responsible for updating `_pad`, and, in subclasses,
204
- # for setting the tick{1,2}line markers as well . From the user
205
- # perspective this should always be called through _apply_params, which
206
- # further updates ticklabel positions using the new pads.
207
+ # This method is responsible for verifying input and, in subclasses, for setting
208
+ # the tick{1,2}line markers. From the user perspective this should always be
209
+ # called through _apply_params, which further updates ticklabel positions using
210
+ # the new pads.
207
211
if tickdir is None :
208
212
tickdir = mpl .rcParams [f'{ self .__name__ } .direction' ]
209
213
else :
210
214
_api .check_in_list (['in' , 'out' , 'inout' ], tickdir = tickdir )
211
215
self ._tickdir = tickdir
212
- self ._pad = self ._base_pad + self .get_tick_padding ()
213
216
214
217
def get_tickdir (self ):
215
218
return self ._tickdir
@@ -1615,6 +1618,14 @@ def _copy_tick_props(self, src, dest):
1615
1618
dest .tick1line .update_from (src .tick1line )
1616
1619
dest .tick2line .update_from (src .tick2line )
1617
1620
dest .gridline .update_from (src .gridline )
1621
+ self .update_from (src )
1622
+ dest ._loc = src ._loc
1623
+ dest ._size = src ._size
1624
+ dest ._width = src ._width
1625
+ dest ._base_pad = src ._base_pad
1626
+ dest ._labelrotation = src ._labelrotation
1627
+ dest ._zorder = src ._zorder
1628
+ dest ._tickdir = src ._tickdir
1618
1629
1619
1630
def get_label_text (self ):
1620
1631
"""Get the text of the label."""
0 commit comments