How can I draw a line series against the Y axis?

Oystein Bjorke 10 aastat tagasi 0
This discussion was imported from CodePlex

willmoore88 wrote at 2013-07-18 16:05:

I need to plot a graph like this one, against the Y axis.

http://www.intechopen.com/source/html/16221/media/image7.png

Any ideas?

everytimer wrote at 2013-07-18 17:41:

What's the problem? Just provide the right List<DataPoint> and you're done. If you already have the data in the "normal" format run a loop like this:
foreach (DataPoint p in myList1)
{
      myList2.Add(new DataPoint(p.Y, p.X);
}
Good luck