1 Star 0 Fork 1

eluxiaoyao/pyecharts_learn

forked from sowhat510/pyecharts_learn 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
7.旋转x轴坐标.py 642 Bytes
一键复制 编辑 原始数据 按行查看 历史
Heisenberg 提交于 2021-06-16 12:36 . something new
from pyecharts import options as opts
from pyecharts.charts import Bar
import random
l1 = ['很长很长很长很长很长的坐标轴{}'.format(i) for i in range(10)]
l2 = [random.choice(range(10, 100, 10)) for i in range(10)]
bar = (
Bar()
.add_xaxis(l1)
.add_yaxis("l2", l2)
.set_global_opts(xaxis_opts=opts.AxisOpts(axislabel_opts=opts.LabelOpts(rotate=-15)),
# rotate=-15表示将坐标轴逆时针旋转15度
title_opts=opts.TitleOpts(title="Bar-旋转X轴标签", subtitle="解决标签名字过长的问题"))
)
bar.render(path='7.旋转x轴坐标.html')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/eluxiaoyao/pyecharts_learn.git
git@gitee.com:eluxiaoyao/pyecharts_learn.git
eluxiaoyao
pyecharts_learn
pyecharts_learn
master

搜索帮助