Hi, guys
I know win32com is working on windows for python, and I've question:
I want to save chart from demo.xlsx as an image. I also found some code as
below:
from win32com.client import Dispatch
xlsApp = Dispatch("Excel.Application")
xlsWB = xlsApp.Workbooks.Open(r'/tmp/test/demo.xlsx')
xlsSheet = xlsWB.Sheets("sheet1")
mychart = XlsSheet.Charts(1) #'1' is the index of the chart object in the wb
mychart.Export(Filename=r'/tmp/test/MyExportedChart.png')
is there anyway I can run this code on linux ?
or is there anyway I can save chart from an existing xlsx as an image?
It drives me crazy.
Thanks
Wiley
_______________________________________________
python-win32 mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-win32