File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change
1
+ `matplotlib.colorbar.Colorbar ` uses un-normalized axes for all mappables
2
+ ------------------------------------------------------------------------
3
+
4
+ Before 3.0, `matplotlib.colorbar.Colorbar ` (`~.Figure.colorbar `) normalized
5
+ all axes limits between 0 and 1 and had custom tickers to handle the
6
+ labelling of the colorbar ticks. After 3.0, colorbars constructed from
7
+ mappables that were *not * contours were constructed with axes that had
8
+ limits between ``vmin `` and ``vmax `` of the mappable's norm, and the tickers
9
+ were made children of the normal axes tickers.
10
+
11
+ This version of Matplotlib extends that to mappables made by contours, and
12
+ allows the axes to run between the lesser the lowest boundary in the contour
13
+ and the highest.
14
+
15
+ Code that worked around the normalization between 0 and 1 will need to be
16
+ modified.
You can’t perform that action at this time.
0 commit comments