Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 488 Bytes

bar_base.md

File metadata and controls

21 lines (15 loc) · 488 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())
    .add_yaxis("商家B", Faker.values())
    .set_global_opts(title_opts=opts.TitleOpts(title="Bar-基本示例", subtitle="我是副标题"))
    .render("bar_base.html")
)
<iframe width="100%" height="800px" src="Bar/bar_base.html"></iframe>