14.小结-----水仙图

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

c = (
    Liquid()
    .add("2019中国在世界占比", [0.16, 0.83], is_outline_show=False, shape=SymbolType.DIAMOND)
    .set_global_opts(title_opts=opts.TitleOpts(title="2019中国在世界占比"))
    .render("水仙图.html")
)

おすすめ

転載: blog.csdn.net/m0_46222433/article/details/119879364