views:

2540

answers:

2
+2  Q: 

ZedGraph labels

+5  A: 
brianpeiris
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