mirror of
https://github.com/pyecharts/pyecharts.git
synced 2025-12-08 20:59:23 +00:00
55 lines
1.4 KiB
Python
55 lines
1.4 KiB
Python
# coding=utf-8
|
|
import json
|
|
import os
|
|
|
|
from example.commons import Collector
|
|
from pyecharts import options as opts
|
|
from pyecharts.charts import Page, TreeMap
|
|
|
|
C = Collector()
|
|
|
|
|
|
@C.funcs
|
|
def treemap_base() -> TreeMap:
|
|
data = [
|
|
{"value": 40, "name": "我是A"},
|
|
{
|
|
"value": 180,
|
|
"name": "我是B",
|
|
"children": [
|
|
{
|
|
"value": 76,
|
|
"name": "我是B.children",
|
|
"children": [
|
|
{"value": 12, "name": "我是B.children.a"},
|
|
{"value": 28, "name": "我是B.children.b"},
|
|
{"value": 20, "name": "我是B.children.c"},
|
|
{"value": 16, "name": "我是B.children.d"},
|
|
],
|
|
}
|
|
],
|
|
},
|
|
]
|
|
|
|
c = (
|
|
TreeMap()
|
|
.add("演示数据", data)
|
|
.set_global_opts(title_opts=opts.TitleOpts(title="TreeMap-基本示例"))
|
|
)
|
|
return c
|
|
|
|
|
|
@C.funcs
|
|
def treemap_official():
|
|
with open(os.path.join("fixtures", "treemap.json"), "r", encoding="utf-8") as f:
|
|
data = json.load(f)
|
|
c = (
|
|
TreeMap()
|
|
.add("演示数据", data)
|
|
.set_global_opts(title_opts=opts.TitleOpts(title="TreeMap-官方示例"))
|
|
)
|
|
return c
|
|
|
|
|
|
Page().add(*[fn() for fn, _ in C.charts]).render()
|