File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1529,15 +1529,15 @@ def get_pickradius(self):
15291529
15301530 def get_majorticklabels (self ):
15311531 """Return this Axis' major tick labels, as a list of `~.text.Text`."""
1532- self ._update_ticks ()
1532+ self ._update_ticks (_use_cache = False )
15331533 ticks = self .get_major_ticks ()
15341534 labels1 = [tick .label1 for tick in ticks if tick .label1 .get_visible ()]
15351535 labels2 = [tick .label2 for tick in ticks if tick .label2 .get_visible ()]
15361536 return labels1 + labels2
15371537
15381538 def get_minorticklabels (self ):
15391539 """Return this Axis' minor tick labels, as a list of `~.text.Text`."""
1540- self ._update_ticks ()
1540+ self ._update_ticks (_use_cache = False )
15411541 ticks = self .get_minor_ticks ()
15421542 labels1 = [tick .label1 for tick in ticks if tick .label1 .get_visible ()]
15431543 labels2 = [tick .label2 for tick in ticks if tick .label2 .get_visible ()]
You can’t perform that action at this time.
0 commit comments