Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 503 Bytes

147.md

File metadata and controls

26 lines (21 loc) · 503 Bytes
@author jackzhenguo
@desc
@tag
@version 
@date 2020/02/14
from pyecharts import options as opts
from pyecharts.charts import Liquid, Page
from pyecharts.globals import SymbolType

def liquid() -> Liquid:
    c = (
        Liquid()
        .add("lq", [0.67, 0.30, 0.15])
        .set_global_opts(title_opts=opts.TitleOpts(title="Liquid"))
    )
    return c

liquid().render('./img/liquid.html')
[上一个例子](146.md) [下一个例子](148.md)