如何使用python openpyxl库获取Excel图表的主标题文本

问题描述 投票:0回答:1

使用Python模块openpyxl,我尝试获取Excel图表的主标题。

我需要你协助编写脚本。

例如,图表标题“测试”如下。我想检索这个标题并将其放入 Python 变量中。

enter image description here

python excel charts openpyxl
1个回答
0
投票

具体来说,你想要这样的东西;

import openpyxl

# Load the Excel workbook
workbook = openpyxl.load_workbook(r"chart.xlsx")

# Access the sheet containing the chart
sheet = workbook['charts - APAC']  # Replace with your sheet name

# Iterate through all charts in the sheet
for chart in sheet._charts:
    print(chart.title.text.rich.p[0].text[0].value)

© www.soinside.com 2019 - 2024. All rights reserved.