当前位置:网站首页>【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")

边栏推荐
- Ggplot facet detail adjustment summary
- ubuntu20安裝redisjson記錄
- Vernacular high concurrency (2)
- How to manage the expiration of enterprise distribution certificates- How to manage Enterprise Distribution certificate expiration?
- Baidu map JS development, open a blank, bmapgl is not defined, err_ FILE_ NOT_ FOUND
- 预处理——插值
- 1.19.11.SQL客户端、启动SQL客户端、执行SQL查询、环境配置文件、重启策略、自定义函数(User-defined Functions)、构造函数参数
- Preprocessing - interpolation
- 接口数据安全保证的10种方式
- 史上最全学习率调整策略lr_scheduler
猜你喜欢
![[dpdk] dpdk sample source code analysis III: dpdk-l3fwd_ 001](/img/f6/dced69ea36fc95ef84bb546c56dd91.png)
[dpdk] dpdk sample source code analysis III: dpdk-l3fwd_ 001

太方便了,钉钉上就可完成代码发布审批啦!

It's too convenient. You can complete the code release and approval by nailing it!

机械臂速成小指南(十):可达工作空间

【mysql】mysql中行排序

史上最全学习率调整策略lr_scheduler

2022夏每日一题(一)

链表面试常见题

一些常用软件相关

Tencent cloud native database tdsql-c was selected into the cloud native product catalog of the Academy of communications and communications
随机推荐
维护万星开源向量数据库是什么体验
Redis源码学习(31),字典学习,dict.c(一)
[safe office and productivity application] Shanghai daoning provides you with onlyoffice download, trial and tutorial
Arduino droplet detection
What is the experience of maintaining Wanxing open source vector database
Force buckle ----- path sum III
Kotlin Android 环境搭建
二进制、八进制、十六进制
Confirm the future development route! Digital economy, digital transformation, data This meeting is very important
Construction of Hisilicon universal platform: color space conversion YUV2RGB
Restcloud ETL Community Edition June featured Q & A
概率论公式
The most complete learning rate adjustment strategy in history LR_ scheduler
My brave way to line -- elaborate on what happens when the browser enters the URL
Class常量池与运行时常量池
19. (ArcGIS API for JS) ArcGIS API for JS line acquisition (sketchviewmodel)
数据的存储
22. (ArcGIS API for JS) ArcGIS API for JS Circle Collection (sketchviewmodel)
24. (ArcGIS API for JS) ArcGIS API for JS point modification point editing (sketchviewmodel)
Delete data in SQL