I can use VBA to create a clustured column charty using the following code:
ActiveSheet.Shapes.AddChart.Select ActiveChart.ChartType = xlColumnClustered
Use the .Top and .Left properties e.g
.Top
.Left
With ActiveSheet.Shapes("Chart 1") .Left = Range("C10").Left .Top = Range("C10").Top End With