是否可以通过VBA创建条形图而无需使用工作表中的范围?我已经在代码中有了值。
答案 0 :(得分:0)
是的,可以将Arrays
提供给Series
。即。
Sub Example()
With Sheet1.ChartObjects.Add(0, 0, 300, 300).Chart.SeriesCollection.NewSeries
.Name = "Example"
.XValues = Array(1, 2, 3, 4, 5)
.Values = Array(1, 4, 9, 16, 25)
End With
End Sub