IValueList.Count
IValueList
property Count: Integer;
Type Library
TeeChartx
Description
This property returns the number of values in the List.
Count Property (IValueList) Example [Visual Basic]:
You can, for example, use this function to locate a specific value:
Dim t As Integer
With TChart1.Series(0)
For t = 0 To .YValues.Count - 1
If .YValues.Value(t) > 700 Then
.PointColor(t) = vbBlue
End If
Next t
End With