Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 355 Bytes

liquid_base.md

File metadata and controls

17 lines (12 loc) · 355 Bytes

pyecharts 代码 / 效果

from pyecharts import options as opts
from pyecharts.charts import Liquid

c = (
    Liquid()
    .add("lq", [0.6, 0.7])
    .set_global_opts(title_opts=opts.TitleOpts(title="Liquid-基本示例"))
    .render("liquid_base.html")
)
<iframe width="100%" height="800px" src="Liquid/liquid_base.html"></iframe>