We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 np import matplotlib.pyplot as plt plt.pcolormesh(np.arange(12).reshape(4, 3), edgecolor='#888888', facecolor='none') plt.show()