pyecharts_Bar

全部来自于官方文档,主要用于方便自己查找

Funnel:漏斗图

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
x_data = []
y_data = []

data = [[x_data[i], y_data[i]] for i in range(len(x_data))

(
Funnel(init_opts = opts.InitOpts(width="“, height=""))
.add(
series_name = "",
data_pair=data,
...
)
.set_global_opts(title_opts=opts.TitleOpts(title="漏斗图主标题", subtitle="副标题"))
.render("xxx.html")
)
  • add()
    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
    def add(
    # 系列名称,用于 tooltip 的显示,legend 的图例筛选。
    series_name: str,

    # 系列数据项,格式为 [(key1, value1), (key2, value2)]
    data_pair: Sequence,

    # 是否选中图例
    is_selected: bool = True,

    # 系列 label 颜色
    color: Optional[str] = None,

    # 数据排序, 可以取 'ascending','descending','none'(表示按 data 顺序)
    sort_: str = "descending",

    # 数据图形间距
    gap: Numeric = 0,

    # 标签配置项,参考 `series_options.LabelOpts`
    label_opts: Union[opts.LabelOpts, dict] = opts.LabelOpts(),

    # 提示框组件配置项,参考 `series_options.TooltipOpts`
    tooltip_opts: Union[opts.TooltipOpts, dict, None] = None,

    # 图元样式配置项,参考 `series_options.ItemStyleOpts`
    itemstyle_opts: Union[opts.ItemStyleOpts, dict, None] = None,
    )