IArrowSeries.EndYValues
IArrowSeries
property EndYValues: IValueList;
Type Library
TeeChartx
Description
Each Arrow has (X0,Y0) and (X1,Y1) coordinates.
EndYValues property is the list of Y1 values.
Example [Visual Basic]:
This code modifies the Y1 coordinate of first arrow point:
tmp = TChart1.Series(0).asArrow.EndYValues.Value(0)
TChart1.Series(0).asArrow.EndYValues.Value(0) = tmp + 123