1 Star 0 Fork 0

陈书勇/PythonEcharts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
04-渲染图片.py 468 Bytes
一键复制 编辑 原始数据 按行查看 历史
陈书勇 提交于 2023-12-16 18:18 . 初始化上传Python的图表代码
"""
* @File: 04-渲染图片.py
* @Author: CSY - 25809
* @Date: 2020/5/27 - 16:22
* @Project: Python
"""
from pyecharts.charts import Bar
from pyecharts.render import make_snapshot
# 使用 snapshot-selenium 渲染图片
from snapshot_selenium import snapshot
bar = (
Bar()
.add_xaxis(["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"])
.add_yaxis("商家A", [5, 20, 36, 10, 75, 90])
)
make_snapshot(snapshot, bar.render(), "bar.png")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/csy1993/PythonEcharts.git
[email protected]:csy1993/PythonEcharts.git
csy1993
PythonEcharts
PythonEcharts
main

搜索帮助