我有一个包含两列的数组,我想在散点图中绘制它。我试图使用以下内容,但它表示下标超出范围。
With myChartObject.Activate
ActiveChart.SeriesCollection.NewSeries
ActiveChart.FullSeriesCollection(a + 1).Name = testID
ActiveChart.FullSeriesCollection(a + 1).XValues = arr()(0)
ActiveChart.FullSeriesCollection(a + 1).Values = arr()(1)
End With
我希望第一列(0)中的所有值都是X轴,第二列(1)中的值是Y轴值。
由于