2

Something like this, but without legend and with labels on y.

Port
  • 86
  • 12

1 Answers1

6

Here is what I've used to make a horizontal bar with pygal:

bar_chart = pygal.HorizontalBar(show_legend=False)
bar_chart.title = "Title"
bar_chart.add("", [1, 4, 6, 7, 2, 3])
bar_chart.x_labels = ("the", "quick", "brown", "fox", "jumps", "over")

It produced a graph like this: pygal horizontal example

Alan H
  • 3,021
  • 4
  • 25
  • 24