Python 利用 openpyxl 操作 Excel 之 图表
2021-04-26 01:30
标签:折线图 显示 cat one charts 颜色 code 官方 legend openpyxl 官方文档 Python 利用 openpyxl 操作 Excel 之 图表 标签:折线图 显示 cat one charts 颜色 code 官方 legend 原文地址:https://www.cnblogs.com/leoliu666/p/13253967.html工具
绘制图表
# 绘制 图形 https://openpyxl.readthedocs.io/en/stable/charts/line.html
plt_line_chart = LineChart()
plt_line_chart.title = "折线图" # 图表标题名称
plt_line_chart.style = 12 # 设置样式
plt_line_chart.width = 20
plt_line_chart.height = 10
plt_line_chart.legend = None # 不显示备注
plt_line_chart.y_axis.title = "纵坐标标题"
plt_line_chart.x_axis.title = "横坐标标题" # 标签
# 数据
line_chart_data = Reference(plt_sheet, min_col=3, min_row=1, max_col=3, max_row=row_idx)
plt_line_chart.add_data(line_chart_data, titles_from_data=True)
# 横轴标签
line_chart_cats = Reference(plt_sheet, min_col=1, min_row=2, max_col=1, max_row=row_idx)
plt_line_chart.set_categories(line_chart_cats)
# 格式化
line_series = plt_line_chart.series[0]
line_series.graphicalProperties.line.solidFill = "5B9BD5" # 设置颜色
plt_sheet.add_chart(plt_line_chart, "B10") # 增加图表 存放位置
下一篇:web表达三剑客之html
文章标题:Python 利用 openpyxl 操作 Excel 之 图表
文章链接:http://soscw.com/index.php/essay/79615.html