File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -12,3 +12,7 @@ instead.
12
12
~~~~~~~~~~~~~~~~~~~~~~~~
13
13
``backend_wx.DEBUG_MSG `` is deprecated. The wx backends now use regular
14
14
logging.
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):
541
541
X , Y = self ._mesh ()
542
542
C = self ._values [:, np .newaxis ]
543
543
# decide minor/major axis
544
- self .config_axis ()
544
+ self ._config_axis ()
545
545
self ._config_axes (X , Y )
546
546
if self .filled :
547
547
self ._add_solids (X , Y , C )
548
548
549
+ @cbook .deprecated ("3.3" )
549
550
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."""
550
555
ax = self .ax
551
556
552
557
if self .orientation == 'vertical' :
You can’t perform that action at this time.
0 commit comments