I'm trying to change the size of a chart in an Excel spreadsheet using win32com and Python. The code below takes an Excel file that is already populated with data, and adds a chart which I would like to resize. Any ideas on code to add\modify to change the size of the chart? Thanks!
import win32com.client as win32
xl = win32.DispatchEx('Excel.Application')
wb = xl.Workbooks.Open('C:/newfolder/example.xlsx')
ws = wb.Worksheets('Sheet1').Select()
ws = xl.ActiveSheet
ch = ws.Shapes.AddChart().Select()
xl.ActiveChart.ChartType = c.xlXYScatterLines
xl.ActiveChart.SetSourceData(Source = ws.Range(a+':'+b),PlotBy =2)
xl.ActiveChart.HasTitle = True
xl.ActiveChart.ChartTitle.Text = 'Chart of Capabilities'
xl.ActiveChart.ChartTitle.Font.Size = 14
.
.
.
{changing various chart attriutes}
.
.
.
According to the interop docs, you should be calling
AddChart2
instead ofAddChart
. The former takes arguments for left, top, width, height and returns a Shape. If you need to resize the chart later, you should be able to set theLeft
etc on the shape. If you need to retrieve a specific chart, you use theChartObjects(index)
property ofWorksheet
, which will get you a ChartObject. It is not clear from the docs what is (if any) relationship betweenShape
andChartObject
.