forked from pyecharts/pyecharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscatter3d_example.py
48 lines (40 loc) · 1.23 KB
/
scatter3d_example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# coding=utf-8
import random
from example.commons import Collector, Faker
from pyecharts import options as opts
from pyecharts.charts import Page, Scatter3D
C = Collector()
@C.funcs
def scatter3d_base() -> Scatter3D:
data = [
[random.randint(0, 100), random.randint(0, 100), random.randint(0, 100)]
for _ in range(80)
]
c = (
Scatter3D()
.add("", data)
.set_global_opts(
title_opts=opts.TitleOpts("Scatter3D-基本示例"),
visualmap_opts=opts.VisualMapOpts(range_color=Faker.visual_color),
)
)
return c
@C.funcs
def scatter3d_muti_visualmap_channel():
data = [
[random.randint(0, 100), random.randint(0, 100), random.randint(0, 100)]
for _ in range(80)
]
c = (
Scatter3D()
.add("", data)
.set_global_opts(
title_opts=opts.TitleOpts("Scatter3D-多视觉映射通道"),
visualmap_opts=[
opts.VisualMapOpts(range_color=Faker.visual_color),
opts.VisualMapOpts(type_="size", range_size=[10, 50], pos_top="20%"),
],
)
)
return c
Page().add(*[fn() for fn, _ in C.charts]).render()