当前位置:网站首页>【OA】Excel 文档生成器: Openpyxl 模块
【OA】Excel 文档生成器: Openpyxl 模块
2022-07-06 21:20:00 【Allen Moore】
Openpyxl 模块
1. 面积图 Area Chart
from openpyxl import Workbook
from openpyxl.chart import (
AreaChart,
Reference,
Series,
)
wb = Workbook()
ws = wb.active
rows = [
['序号', '批次 1', '批次 2'],
[2, 40, 30],
[3, 40, 25],
[4, 50, 30],
[5, 30, 10],
[6, 25, 5],
[7, 50, 10],
]
for row in rows:
ws.append(row)
chart = AreaChart()
chart.title = "区域图"
chart.style = 13
chart.x_axis.title = '测试'
chart.y_axis.title = '百分比'
cats = Reference(ws, min_col=1, min_row=1, max_row=7)
data = Reference(ws, min_col=2, min_row=1, max_col=3, max_row=7)
chart.add_data(data, titles_from_data=True)
chart.set_categories(cats)
ws.add_chart(chart, "A10")
wb.save("区域图样例.xlsx")

边栏推荐
- 使用 TiDB Lightning 恢复 GCS 上的备份数据
- Summer 2022 daily question 1 (1)
- [hcie TAC] question 3
- List interview common questions
- 红米k40s root玩机笔记
- 2022夏每日一题(一)
- 接口数据安全保证的10种方式
- When QT uses qtooltip mouse to display text, the picture of the button will also be displayed and the prompt text style will be modified
- QT item table new column name setting requirement exercise (find the number and maximum value of the array disappear)
- 维护万星开源向量数据库是什么体验
猜你喜欢

Gpt-3 is a peer review online when it has been submitted for its own research

Tencent cloud native database tdsql-c was selected into the cloud native product catalog of the Academy of communications and communications

Codeworks 5 questions per day (1700 average) - day 7

数据的存储

PHP lightweight Movie Video Search Player source code

链表面试常见题

QT item table new column name setting requirement exercise (find the number and maximum value of the array disappear)

The most complete learning rate adjustment strategy in history LR_ scheduler

Antd Comment 递归循环评论

运算放大器应用汇总1
随机推荐
tflite模型转换和量化
卡尔曼滤波-1
Ggplot facet detail adjustment summary
Hongmi K40S root gameplay notes
使用切面实现记录操作日志
codeforces每日5题(均1700)-第七天
一些常用软件相关
MySQL的索引
海思万能平台搭建:颜色空间转换YUV2RGB
[development software] tilipa Developer Software
qt-线程等01概念
Some thoughts on cross end development of kbone and applet
Baidu map JS development, open a blank, bmapgl is not defined, err_ FILE_ NOT_ FOUND
Vernacular high concurrency (2)
Gpt-3 is a peer review online when it has been submitted for its own research
NoSQL之Redis配置与优化
使用 BR 恢复 GCS 上的备份数据
Kotlin Android 环境搭建
ABAP 动态内表分组循环
QT opens a file and uses QFileDialog to obtain the file name, content, etc