mirror of
https://github.com/pyecharts/pyecharts.git
synced 2025-12-08 20:59:23 +00:00
61 lines
1.4 KiB
Python
61 lines
1.4 KiB
Python
# coding=utf-8
|
|
from example.commons import Collector
|
|
from pyecharts import options as opts
|
|
from pyecharts.charts import Liquid, Page
|
|
from pyecharts.globals import SymbolType
|
|
|
|
C = Collector()
|
|
|
|
|
|
@C.funcs
|
|
def liquid_base() -> Liquid:
|
|
c = (
|
|
Liquid()
|
|
.add("lq", [0.6, 0.7])
|
|
.set_global_opts(title_opts=opts.TitleOpts(title="Liquid-基本示例"))
|
|
)
|
|
return c
|
|
|
|
|
|
@C.funcs
|
|
def liquid_without_outline() -> Liquid:
|
|
c = (
|
|
Liquid()
|
|
.add("lq", [0.6, 0.7, 0.8], is_outline_show=False)
|
|
.set_global_opts(title_opts=opts.TitleOpts(title="Liquid-无边框"))
|
|
)
|
|
return c
|
|
|
|
|
|
@C.funcs
|
|
def liquid_shape_diamond() -> Liquid:
|
|
c = (
|
|
Liquid()
|
|
.add("lq", [0.4, 0.7], is_outline_show=False, shape=SymbolType.DIAMOND)
|
|
.set_global_opts(title_opts=opts.TitleOpts(title="Liquid-Shape-diamond"))
|
|
)
|
|
return c
|
|
|
|
|
|
@C.funcs
|
|
def liquid_shape_diamond() -> Liquid:
|
|
c = (
|
|
Liquid()
|
|
.add("lq", [0.3, 0.7], is_outline_show=False, shape=SymbolType.ARROW)
|
|
.set_global_opts(title_opts=opts.TitleOpts(title="Liquid-Shape-arrow"))
|
|
)
|
|
return c
|
|
|
|
|
|
@C.funcs
|
|
def liquid_shape_diamond() -> Liquid:
|
|
c = (
|
|
Liquid()
|
|
.add("lq", [0.3, 0.7], is_outline_show=False, shape=SymbolType.RECT)
|
|
.set_global_opts(title_opts=opts.TitleOpts(title="Liquid-Shape-rect"))
|
|
)
|
|
return c
|
|
|
|
|
|
Page().add(*[fn() for fn, _ in C.charts]).render()
|