Hi,
I have made an xlsx file with data in A1,A2,B1,B2 and then make a Column chart (tried clustered column and stacked column).
When I open then save that template. The data shows in A1,A2,B1,B2 but the graph is not visible.
Literally my code is:
#!/usr/bin/python3
from openpyxl.chart import BarChart, Series, Reference
from openpyxl import load_workbook
wb = load_workbook('/tmp/excel.xlsx')
wb.save("/tmp/new.xlsx")
I copied the example from:
and it makes the charts fine, but that's making a new one rather than rendering an existing one.
Can anyone suggest why the graph is not rendering?