Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 490 Bytes

line_smooth.md

File metadata and controls

20 lines (15 loc) · 490 Bytes

pyecharts 代码 / 效果

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

c = (
    Line()
    .add_xaxis(Faker.choose())
    .add_yaxis("商家A", Faker.values(), is_smooth=True)
    .add_yaxis("商家B", Faker.values(), is_smooth=True)
    .set_global_opts(title_opts=opts.TitleOpts(title="Line-smooth"))
    .render("line_smooth.html")
)
<iframe width="100%" height="800px" src="Line/line_smooth.html"></iframe>