I\'m making a bar chart in Matplotlib with a call like this:
xs.bar(bar_lefts, bar_heights, facecolor=\'black\', edgecolor=\'black\')
I get
Add width=1.0 as a keyword argument to bar(). E.g.
width=1.0
bar()
xs.bar(bar_lefts, bar_heights, width=1.0, facecolor='black', edgecolor='black').
xs.bar(bar_lefts, bar_heights, width=1.0, facecolor='black', edgecolor='black')
This will fill the bars gaps vertically.