There was an error while loading. Please reload this page.
1 parent c8b5dea commit 3d2ffefCopy full SHA for 3d2ffef
1 file changed
lib/matplotlib/axes/_axes.py
@@ -4944,6 +4944,8 @@ def reduce_C_function(C: array) -> float
4944
if norm is not None:
4945
if norm.vmin is None and norm.vmax is None:
4946
norm.autoscale_None(accum)
4947
+ norm.vmin = np.ma.masked if norm.vmin is None else norm.vmin
4948
+ norm.vmax = np.ma.masked if norm.vmax is None else norm.vmax
4949
4950
if bins is not None:
4951
if not np.iterable(bins):
0 commit comments