Is there a method to print the category name of a series in the chart
from pptx import Presentation
from pptx.chart.data import ChartData
shape = slide_11.shapes[5]
ReachChart = shape.chart
reach_data = ChartData()
reach_data.categories = ['reach 1', 'reach 2']
reach_data.add_series('series', tuple(3.145, 7.526))
ReachChart.replace_data(reach_data)
I am able to print the series values using the below method
for i in shape.chart.series:
print(i.values)
In the same way, I need to print the category values (like 'reach 1' and 'reach 2')