Balkenfarbe Demo #

Dies ist ein Beispiel, das zeigt, wie Balkenfarbe und Legendeneinträge mit den Farb- und Beschriftungsparametern von gesteuert werden bar. Beachten Sie, dass Beschriftungen mit vorangestelltem Unterstrich nicht in der Legende angezeigt werden.

Obstangebot nach Art und Farbe
import matplotlib.pyplot as plt

fig, ax = plt.subplots()

fruits = ['apple', 'blueberry', 'cherry', 'orange']
counts = [40, 100, 30, 55]
bar_labels = ['red', 'blue', '_red', 'orange']
bar_colors = ['tab:red', 'tab:blue', 'tab:red', 'tab:orange']

ax.bar(fruits, counts, label=bar_labels, color=bar_colors)

ax.set_ylabel('fruit supply')
ax.set_title('Fruit supply by kind and color')
ax.legend(title='Fruit color')

plt.show()

Galerie generiert von Sphinx-Gallery