I'm using ZedGraph and want to know how I can find the points that make up an entire curve.
foreach(var Curve in GraphPane.CurveList)
{
foreach(var Point in Curve.???)
{
Console.WriteLine(Point.X+" "+Point.Y); // <- I'm not sure if this is correct, but this is what I want
}
}
How can I accomplish this?