1 Star 0 Fork 7

sunjiyun26/pyecharts

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test_funnel.py 691 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python
#coding=utf-8
from __future__ import unicode_literals
from pyecharts import Funnel
def test_funnel():
# funnel_0
attr = ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
value = [20, 40, 60, 80, 100, 120]
funnel = Funnel("漏斗图示例")
funnel.add("商品", attr, value, is_label_show=True, label_pos="inside", label_text_color="#fff")
funnel.render()
# funnel_1
funnel = Funnel("漏斗图示例", width=600, height=400, title_pos='center')
funnel.add("商品", attr, value, is_label_show=True, label_pos="outside", legend_orient='vertical', legend_pos='left')
funnel.show_config()
funnel.render()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sunjiyun26126/pyecharts.git
git@gitee.com:sunjiyun26126/pyecharts.git
sunjiyun26126
pyecharts
pyecharts
master

搜索帮助