File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1490,15 +1490,15 @@ def get_pickradius(self):
14901490
14911491 def get_majorticklabels (self ):
14921492 """Return this Axis' major tick labels, as a list of `~.text.Text`."""
1493- self ._update_ticks ()
1493+ self ._update_ticks (_use_cache = False )
14941494 ticks = self .get_major_ticks ()
14951495 labels1 = [tick .label1 for tick in ticks if tick .label1 .get_visible ()]
14961496 labels2 = [tick .label2 for tick in ticks if tick .label2 .get_visible ()]
14971497 return labels1 + labels2
14981498
14991499 def get_minorticklabels (self ):
15001500 """Return this Axis' minor tick labels, as a list of `~.text.Text`."""
1501- self ._update_ticks ()
1501+ self ._update_ticks (_use_cache = False )
15021502 ticks = self .get_minor_ticks ()
15031503 labels1 = [tick .label1 for tick in ticks if tick .label1 .get_visible ()]
15041504 labels2 = [tick .label2 for tick in ticks if tick .label2 .get_visible ()]
You can’t perform that action at this time.
0 commit comments