我正在尝试创建一个在图表中循环遍历系列的宏,并且仅显示取决于最大值/最小值的最大值/最小值标签。
一些系列只有负值,在这些情况下,我希望只显示最小数据点标签,反之亦然,对于具有 0 或更大值的系列。
我到目前为止的代码是:
Sheets("Curve").ChartObjects("Chart 14").Activate
For Each serie In ActiveChart.SeriesCollection
Dim pointCount As Integer
Dim pointValues As Variant
pointCount = serie.Points.Count
pointValues = serie.Values
For pointIndex = 1 To pointCount
If pointValues(pointIndex) < 1000 Then
serie.Points(pointIndex).HasDataLabel = True
End If
Next pointIndex
Next serie
End Sub
当我手动输入阈值时效果很好,但我想用 Max(series) 值替换“1000”,以便图表中的每个系列只有一个可见的标签。