VBA - 图表系列数值限制

时间:2016-06-30 15:50:08

标签: arrays excel vba excel-vba charts

我正在尝试绘制一个大约10.000或更多值的数组,但该图表只绘制了这些数字的十分之一。 数组engSpdPointsindTrqPoints的值超过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

结束

如果不将数据存储在另一张纸中的一系列单元格中,那就太棒了。

0 个答案:

没有答案