matplotlib bar graph black - how do I remove bar borders matplotlib bar graph black - how do I remove bar borders python python

matplotlib bar graph black - how do I remove bar borders


Set the edgecolor to "none": bar(..., edgecolor = "none")


Another option is to set edgecolor to be the intended color in your call to bar:

# If your intended color is blue, this will work:bar(. . . , edgecolor='b')