I would like to set the color of the bar in a bar chart with openpyxl. I created the following
data = Reference(sheet, min_col=3, min_row=6, max_col=4, max_row=10)
titles = Reference(sheet, min_col=1, min_row=6, max_row=10)
chart = BarChart3D()
chart.title = title
chart.add_data(data=data, titles_from_data=True)
chart.set_categories(titles)
I found here How to set Background Color of Plot Area of Chart using openpyxl how change the background color using chart.plot_area.graphical_properties
However, I don't know to change the color of the bars.