mirror of
https://github.com/pyecharts/pyecharts.git
synced 2025-12-08 20:59:23 +00:00
13 lines
221 B
Python
13 lines
221 B
Python
# coding=utf-8
|
|
from pyecharts import options as opts
|
|
from pyecharts.charts import Boxplot, Page
|
|
|
|
from example.commons import Faker
|
|
|
|
charts = []
|
|
|
|
|
|
def collect_charts(fn):
|
|
charts.append((fn, fn.__name__))
|
|
return fn
|