赞
踩
其实要实现起来官网上有比较详细的说明
地址:渲染图片 - pyecharts - A Python Echarts Plotting Library built with love.
首先安装包:
- pip install pyecharts
- pip install snapshot_phantomjs
然后代码这样:
- from pyecharts import options as opts
- from pyecharts.charts import Bar
- from pyecharts.render import make_snapshot
-
- from snapshot_phantomjs import snapshot
-
- def bar_chart() -> Bar:
- c = (
- Bar()
- .add_xaxis(["衬衫", "毛衣", "领带", "裤子", "风衣", "高跟鞋", "袜子"])
- .add_yaxis("商家A", [114, 55, 27, 101, 125, 27, 105])
- .add_yaxis("商家B", [57, 134, 137, 129, 145, 60, 49])
- .reversal_axis()
- .set_series_opts(label_opts=opts.LabelOpts(position="ri
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。