Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このようなものですが、凡例がなく、y にラベルが付いています。
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")
次のようなグラフが作成されました。