public ValueList EndXValues {get; set;}
Remarks
Each Arrow has (X0,Y0) and (X1,Y1) coordinates.
EndXValues property is the list of X1 values.
Example
This code sets to 123 the X1 coordinate of the 6th arrow point: (Remember point index starts at zero)
[C#]
Steema.TeeChart.Styles.Arrow a=(Steema.TeeChart.Styles.Arrow)tChart1[0];
a.EndXValues[5]=123;
See Also
Arrow Class | Arrow Members | Steema.TeeChart.Styles Namespace