我正在尝试添加一个新的 chart1 表并将 sheet1 中的系列添加到我的 chart1 表中。
这是我的代码...
Charts.Add
With ActiveChart
.ChartType = xlLine
.HasTitle = True
.ChartTitle.Text = "Closing Price"
.SeriesCollection.NewSeries
.FullSeriesCollection.XValues = "=Sheet1!$A$2:$A$741" '<<<<This is the xvalue
.FullSeriesCollection.Values = "=Sheet1!$B$2:$B$741" '<<<<This are the value
End With
请告诉我如何做到这一点.. 提前致谢