File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1502,15 +1502,15 @@ def get_pickradius(self):
15021502
15031503 def get_majorticklabels (self ):
15041504 """Return this Axis' major tick labels, as a list of `~.text.Text`."""
1505- self ._update_ticks ()
1505+ self ._update_ticks (_use_cache = False )
15061506 ticks = self .get_major_ticks ()
15071507 labels1 = [tick .label1 for tick in ticks if tick .label1 .get_visible ()]
15081508 labels2 = [tick .label2 for tick in ticks if tick .label2 .get_visible ()]
15091509 return labels1 + labels2
15101510
15111511 def get_minorticklabels (self ):
15121512 """Return this Axis' minor tick labels, as a list of `~.text.Text`."""
1513- self ._update_ticks ()
1513+ self ._update_ticks (_use_cache = False )
15141514 ticks = self .get_minor_ticks ()
15151515 labels1 = [tick .label1 for tick in ticks if tick .label1 .get_visible ()]
15161516 labels2 = [tick .label2 for tick in ticks if tick .label2 .get_visible ()]
You can’t perform that action at this time.
0 commit comments