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

边栏推荐
- C# Task拓展方法
- 维护万星开源向量数据库是什么体验
- Tencent cloud native database tdsql-c was selected into the cloud native product catalog of the Academy of communications and communications
- 机器学习笔记 - 使用机器学习进行鸟类物种分类
- [MySQL] row sorting in MySQL
- One of oscp tools: dirsearch usage Encyclopedia
- 太方便了,钉钉上就可完成代码发布审批啦!
- 本机mysql
- Que savez - vous de la sérialisation et de l'anti - séquence?
- Optimization cases of complex factor calculation: deep imbalance, buying and selling pressure index, volatility calculation
猜你喜欢

map和set的实现

卡尔曼滤波-1

Do you choose pandas or SQL for the top 1 of data analysis in your mind?

2022夏每日一题(一)

维护万星开源向量数据库是什么体验

Top 50 hit industry in the first half of 2022

海思3559万能平台搭建:RTSP实时播放的支持

Code quality management

VHDL implementation of single cycle CPU design

QT opens a file and uses QFileDialog to obtain the file name, content, etc
随机推荐
Baidu map JS development, open a blank, bmapgl is not defined, err_ FILE_ NOT_ FOUND
Que savez - vous de la sérialisation et de l'anti - séquence?
Introduction to opensea platform developed by NFT trading platform (I)
It's too convenient. You can complete the code release and approval by nailing it!
Code quality management
.net中 接口可以有默认实现了
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
My brave way to line -- elaborate on what happens when the browser enters the URL
使用 BR 备份 TiDB 集群到 GCS
概率论公式
web服务性能监控方案
Summer 2022 daily question 1 (1)
【mysql】mysql中行排序
Implementation steps of docker deploying mysql8
The most complete learning rate adjustment strategy in history LR_ scheduler
Basic concepts of Huffman tree
Enter the rough outline of the URL question (continuously updated)
海思万能平台搭建:颜色空间转换YUV2RGB
运算放大器应用汇总1
Kotlin Android 环境搭建