Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 811f917

Browse files
committed
Don't change default behaviour of pcolormesh only change it in the colorbars
1 parent d631dfd commit 811f917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/axes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7395,7 +7395,7 @@ def pcolormesh(self, *args, **kwargs):
73957395
vmax = kwargs.pop('vmax', None)
73967396
shading = kwargs.pop('shading', 'flat').lower()
73977397
antialiased = kwargs.pop('antialiased', False)
7398-
kwargs.setdefault('edgecolors', 'face')
7398+
kwargs.setdefault('edgecolors', 'none')
73997399

74007400
X, Y, C = self._pcolorargs('pcolormesh', *args)
74017401
Ny, Nx = X.shape

0 commit comments

Comments
 (0)