mirror of
https://github.com/pyecharts/pyecharts.git
synced 2026-01-25 17:06:27 +00:00
* Update & Fix: issue 1043(https://github.com/pyecharts/pyecharts/issues/1043) * Update pie_example * Fix pie_example (CI line too long error) * Fix wordcloud_example filename spelling error * 🔬 unit test on the changes * Format: code
111 lines
3.1 KiB
Python
111 lines
3.1 KiB
Python
# coding=utf-8
|
|
from example.commons import Collector, Faker
|
|
from pyecharts import options as opts
|
|
from pyecharts.charts import Page, Pie
|
|
|
|
C = Collector()
|
|
|
|
|
|
@C.funcs
|
|
def pie_base() -> Pie:
|
|
c = (
|
|
Pie()
|
|
.add("", [list(z) for z in zip(Faker.choose(), Faker.values())])
|
|
.set_global_opts(title_opts=opts.TitleOpts(title="Pie-基本示例"))
|
|
.set_series_opts(label_opts=opts.LabelOpts(formatter="{b}: {c}"))
|
|
)
|
|
return c
|
|
|
|
|
|
@C.funcs
|
|
def pie_radius() -> Pie:
|
|
c = (
|
|
Pie()
|
|
.add(
|
|
"",
|
|
[list(z) for z in zip(Faker.choose(), Faker.values())],
|
|
radius=["40%", "75%"],
|
|
)
|
|
.set_global_opts(
|
|
title_opts=opts.TitleOpts(title="Pie-Radius"),
|
|
legend_opts=opts.LegendOpts(
|
|
orient="vertical", pos_top="15%", pos_left="2%"
|
|
),
|
|
)
|
|
.set_series_opts(label_opts=opts.LabelOpts(formatter="{b}: {c}"))
|
|
)
|
|
return c
|
|
|
|
|
|
@C.funcs
|
|
def pie_rosetype() -> Pie:
|
|
v = Faker.choose()
|
|
c = (
|
|
Pie()
|
|
.add(
|
|
"",
|
|
[list(z) for z in zip(v, Faker.values())],
|
|
radius=["30%", "75%"],
|
|
center=["25%", "50%"],
|
|
rosetype="radius",
|
|
label_opts=opts.LabelOpts(is_show=False),
|
|
)
|
|
.add(
|
|
"",
|
|
[list(z) for z in zip(v, Faker.values())],
|
|
radius=["30%", "75%"],
|
|
center=["75%", "50%"],
|
|
rosetype="area",
|
|
)
|
|
.set_global_opts(title_opts=opts.TitleOpts(title="Pie-玫瑰图示例"))
|
|
)
|
|
return c
|
|
|
|
|
|
@C.funcs
|
|
def pie_rich_label() -> Pie:
|
|
c = (
|
|
Pie()
|
|
.add(
|
|
"",
|
|
[list(z) for z in zip(Faker.choose(), Faker.values())],
|
|
radius=["40%", "55%"],
|
|
label_opts=opts.LabelOpts(
|
|
position="outside",
|
|
formatter="{a|{a}}{abg|}\n{hr|}\n {b|{b}: }{c} {per|{d}%} ",
|
|
background_color="#eee",
|
|
border_color="#aaa",
|
|
border_width=1,
|
|
border_radius=4,
|
|
rich={
|
|
"a": {"color": "#999", "lineHeight": 22, "align": "center"},
|
|
"abg": {
|
|
"backgroundColor": "#e3e3e3",
|
|
"width": "100%",
|
|
"align": "right",
|
|
"height": 22,
|
|
"borderRadius": [4, 4, 0, 0],
|
|
},
|
|
"hr": {
|
|
"borderColor": "#aaa",
|
|
"width": "100%",
|
|
"borderWidth": 0.5,
|
|
"height": 0,
|
|
},
|
|
"b": {"fontSize": 16, "lineHeight": 33},
|
|
"per": {
|
|
"color": "#eee",
|
|
"backgroundColor": "#334455",
|
|
"padding": [2, 4],
|
|
"borderRadius": 2,
|
|
},
|
|
},
|
|
),
|
|
)
|
|
.set_global_opts(title_opts=opts.TitleOpts(title="Pie-富文本示例"))
|
|
)
|
|
return c
|
|
|
|
|
|
Page().add(*[fn() for fn, _ in C.charts]).render()
|