File tree 2 files changed +5
-7
lines changed
2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ class _ColorbarMappableDummy(object):
309
309
Private class to hold deprecated ColorbarBase methods that used to be
310
310
inhereted from ScalarMappable.
311
311
"""
312
- @cbook .deprecated ("3.1" , alternative = "mappable .set_norm" )
312
+ @cbook .deprecated ("3.1" , alternative = "ScalarMappable .set_norm" )
313
313
def set_norm (self , norm ):
314
314
"""
315
315
`.colorbar.Colorbar.set_norm` does nothing; set the norm on
Original file line number Diff line number Diff line change 8
8
Customized Colorbars
9
9
====================
10
10
11
- :class:`~matplotlib.colorbar.ColorbarBase` derives from
12
- :mod:`~matplotlib.cm.ScalarMappable` and puts a colorbar in a specified axes,
13
- so it has everything needed for a standalone colorbar. It can be used as-is to
14
- make a colorbar for a given colormap; it does not need a mappable object like
15
- an image. In this tutorial we will explore what can be done with standalone
16
- colorbar.
11
+ `~matplotlib.colorbar.ColorbarBase` puts a colorbar in a specified axes,
12
+ and can make a colorbar for a given colormap; it does not need a mappable
13
+ object like an image. In this tutorial we will explore what can be done with
14
+ standalone colorbar.
17
15
18
16
Basic continuous colorbar
19
17
-------------------------
You can’t perform that action at this time.
0 commit comments