Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 466 Bytes

bar_histogram.md

File metadata and controls

19 lines (14 loc) · 466 Bytes

pyecharts 代码 / 效果

from pyecharts import options as opts
from pyecharts.charts import Bar
from pyecharts.faker import Faker

c = (
    Bar()
    .add_xaxis(Faker.choose())
    .add_yaxis("商家A", Faker.values(), category_gap=0, color=Faker.rand_color())
    .set_global_opts(title_opts=opts.TitleOpts(title="Bar-直方图"))
    .render("bar_histogram.html")
)
<iframe width="100%" height="800px" src="Bar/bar_histogram.html"></iframe>