mirror of
https://github.com/pyecharts/pyecharts.git
synced 2025-12-08 20:59:23 +00:00
65 lines
1.7 KiB
Python
65 lines
1.7 KiB
Python
# coding=utf-8
|
|
from example.commons import Collector, Faker
|
|
from pyecharts import options as opts
|
|
from pyecharts.charts import Page, Scatter
|
|
|
|
C = Collector()
|
|
|
|
|
|
@C.funcs
|
|
def scatter_base() -> Scatter:
|
|
c = (
|
|
Scatter()
|
|
.add_xaxis(Faker.choose())
|
|
.add_yaxis("商家A", Faker.values())
|
|
.set_global_opts(title_opts=opts.TitleOpts(title="Scatter-基本示例"))
|
|
)
|
|
return c
|
|
|
|
|
|
@C.funcs
|
|
def scatter_spliteline() -> Scatter:
|
|
c = (
|
|
Scatter()
|
|
.add_xaxis(Faker.choose())
|
|
.add_yaxis("商家A", Faker.values())
|
|
.set_global_opts(title_opts=opts.TitleOpts(title="Scatter-显示分割线"))
|
|
.set_global_opts(
|
|
xaxis_opts=opts.AxisOpts(splitline_opts=opts.SplitLineOpts(is_show=True)),
|
|
yaxis_opts=opts.AxisOpts(splitline_opts=opts.SplitLineOpts(is_show=True)),
|
|
)
|
|
)
|
|
return c
|
|
|
|
|
|
@C.funcs
|
|
def scatter_visualmap_color() -> Scatter:
|
|
c = (
|
|
Scatter()
|
|
.add_xaxis(Faker.choose())
|
|
.add_yaxis("商家A", Faker.values())
|
|
.set_global_opts(
|
|
title_opts=opts.TitleOpts(title="Scatter-VisualMap(Color)"),
|
|
visualmap_opts=opts.VisualMapOpts(max_=150),
|
|
)
|
|
)
|
|
return c
|
|
|
|
|
|
@C.funcs
|
|
def scatter_visualmap_color() -> Scatter:
|
|
c = (
|
|
Scatter()
|
|
.add_xaxis(Faker.choose())
|
|
.add_yaxis("商家A", Faker.values())
|
|
.add_yaxis("商家B", Faker.values())
|
|
.set_global_opts(
|
|
title_opts=opts.TitleOpts(title="Scatter-VisualMap(Size)"),
|
|
visualmap_opts=opts.VisualMapOpts(type_="size", max_=150, min_=20),
|
|
)
|
|
)
|
|
return c
|
|
|
|
|
|
Page().add(*[fn() for fn, _ in C.charts]).render()
|