brianpeiris
2009-05-03 05:39:19
A:
if the axis type is text the code below is easier to get x coordinate of the points ;)
for (int tPoint = 0; tPoint < curve.Points.Count; tPoint++) { TextObj text = new TextObj(curve.Points[tPoint].Y.ToString(), curve.Points[tPoint].X, curve.Points[tPoint].Y + 10); }
anybudy
2010-06-09 08:37:56