1 Star 0 Fork 1

eluxiaoyao/pyecharts_learn

forked from sowhat510/pyecharts_learn 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
2.添加坐标轴名称.py 533 Bytes
一键复制 编辑 原始数据 按行查看 历史
Heisenberg 提交于 2021-06-16 12:12 . Initial commit
from pyecharts import options as opts
from pyecharts.charts import Bar
l1 = ['星期一', '星期二', '星期三', '星期四', '星期五', '星期七', '星期日']
l2 = [100, 200, 300, 400, 500, 400, 300]
bar = (
Bar()
.add_xaxis(l1)
.add_yaxis("基本柱状图", l2)
.set_global_opts(
title_opts=opts.TitleOpts(title="Bar-基本示例"),
yaxis_opts=opts.AxisOpts(name="人流量"),
xaxis_opts=opts.AxisOpts(name="星期"), )
)
bar.render(path='2.添加坐标轴名称.html')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/eluxiaoyao/pyecharts_learn.git
git@gitee.com:eluxiaoyao/pyecharts_learn.git
eluxiaoyao
pyecharts_learn
pyecharts_learn
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385