File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -12,3 +12,7 @@ instead.
1212~~~~~~~~~~~~~~~~~~~~~~~~
1313``backend_wx.DEBUG_MSG `` is deprecated. The wx backends now use regular
1414logging.
15+
16+ ``Colorbar.config_axis() ``
17+ ~~~~~~~~~~~~~~~~~~~~~~~~~~
18+ ``Colorbar.config_axis() `` is considered internal. Its use is deprecated.
Original file line number Diff line number Diff line change @@ -541,12 +541,17 @@ def draw_all(self):
541541 X , Y = self ._mesh ()
542542 C = self ._values [:, np .newaxis ]
543543 # decide minor/major axis
544- self .config_axis ()
544+ self ._config_axis ()
545545 self ._config_axes (X , Y )
546546 if self .filled :
547547 self ._add_solids (X , Y , C )
548548
549+ @cbook .deprecated ("3.3" )
549550 def config_axis (self ):
551+ self ._config_axis ()
552+
553+ def _config_axis (self ):
554+ """Configure the ticks, ticklabels and label of the underlying Axes."""
550555 ax = self .ax
551556
552557 if self .orientation == 'vertical' :
You can’t perform that action at this time.
0 commit comments