In ZedGraph, how do I show text labels for each point and in the XAxis all together?
XAxis
If I do
myPane.XAxis.Type = AxisType.Text; myPane.
If the axis type is text, the code below is easier to get x-coordinates 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); }