We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
I believe the following code should produce grey edges but they have colour.
import numpy as npimport matplotlib.pyplot as pltplt.pcolormesh(np.arange(12).reshape(4, 3), edgecolor='#888888', facecolor='none')plt.show()