You can set the color of individual stripes using the Artist properties . Here is an example:
import matplotlib.pyplot as plt fig = plt.figure() ax1 = fig.add_subplot(111) bars = ax1.bar(range(1,10), range(1,10), color='blue', edgecolor='black') bars[6].set_facecolor('red') plt.show()

source share