how can I change the colorbar borders so that they are white and not black (externals border and between each segment)?
For example:
x=randint(100, size=
edit: Notice the comments below for MPL 1.3 and later.
Add:
cb=colorbar(cs, drawedges=True) cb.outline.set_color('white') cb.outline.set_linewidth(2) cb.dividers.set_color('white') cb.dividers.set_linewidth(2)