我正在尝试绘制一个大约10.000或更多值的数组,但该图表只绘制了这些数字的十分之一。
数组engSpdPoints
和indTrqPoints
的值超过10.000但是当我检查图表上的数据时,它只显示少于2.000个数据点。
Set residencySrs = .SeriesCollection.NewSeries
With residencySrs
.XValues = engSpdPoints
.Values = indTrqPoints
.MarkerStyle = xlMarkerStyleCircle
.Format.Line.Visible = msoFalse
.Name = residency(1)(4)
End With
With .Axes(xlCategory)
.HasTitle = True
.AxisTitle.Caption = "Eng Speed (rpm)"
.TickLabels.NumberFormat = "0"
End With
With .Axes(xlValue)
.HasTitle = True
.AxisTitle.Caption = "Torque (Nm)"
.TickLabels.NumberFormat = "0"
End With
结束
如果不将数据存储在另一张纸中的一系列单元格中,那就太棒了。