pyecharts第九节、旭日图(现代饼图)

2022-11-29 19:23:19 浏览数 (1)

旭日图用的包是:

代码语言:javascript复制
pip install pyecharts -U

执行就好

创建【demo9.py】测试类

输入以下编码

代码语言:javascript复制
from pyecharts import options as opts

from pyecharts.charts import Sunburst

def sunburst_base() -> Sunburst:
    data = [
        opts.SunburstItem(
            name="金",
            children=[
                opts.SunburstItem(name="刀", value=50),
                opts.SunburstItem(name="枪", value=20),
                opts.SunburstItem(name="剑", value=20),
                opts.SunburstItem(name="戟", value=10)
                ]
            ),
        opts.SunburstItem(
            name="木",
            children=[
                opts.SunburstItem(name="大林木", value=60),
                opts.SunburstItem(name="桦木", value=10),
                opts.SunburstItem(name="桃木", value=10),
                opts.SunburstItem(name="铁木", value=10)
                ]
            ),
        opts.SunburstItem(
            name="水",
            children=[
                opts.SunburstItem(name="弱水", value=20),
                opts.SunburstItem(name="无根之水", value=20),
                opts.SunburstItem(name="羊水", value=20),
                opts.SunburstItem(name="泪水", value=20)
                ]
            ),
        opts.SunburstItem(
            name="火",
            children=[
                opts.SunburstItem(name="异火", value=30),
                opts.SunburstItem(name="雷火", value=40),
                opts.SunburstItem(name="战火", value=40),
                opts.SunburstItem(name="烈火", value=30)
                ]
            ),
        opts.SunburstItem(
            name="土",
            children=[
                opts.SunburstItem(name="稀土", value=30),
                opts.SunburstItem(name="黑土", value=30),
                opts.SunburstItem(name="红土", value=20),
                opts.SunburstItem(name="泥土", value=20)
                ]
            )
        ]
    c = (
        Sunburst(init_opts=opts.InitOpts(page_title="五行旭日图-演示"))
        .add(
            "sunburst",
            data,
            radius=["20%", "85%"]
            )
        .set_global_opts(title_opts=opts.TitleOpts(title="五行旭日图-演示", pos_left="center"))
        .render("xuri.html")
        )
    return c
sunburst_base()

执行

执行生成的【xuri.html】文件

双击打开

效果演示

希望能对大家有所帮助。 

0 人点赞