pyecharts/test/test_funnel.py
2019-03-25 18:46:39 +08:00

24 lines
483 B
Python

#!/usr/bin/env python
# coding=utf-8
from __future__ import unicode_literals
from test.constants import CLOTHES
from pyecharts import Funnel
prices = [20, 40, 60, 80, 100, 120]
def test_funnel_other_style():
funnel = Funnel("漏斗图示例", title_pos="center")
funnel.add(
"商品",
CLOTHES,
prices,
is_label_show=True,
label_pos="outside",
legend_orient="vertical",
legend_pos="left",
)
funnel.render()