Plotting with C# - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T22:34:33Z http://stackoverflow.com/feeds/question/550371 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/550371/plotting-with-c 3 Plotting with C# Shinka 2009-02-15T05:28:18Z 2009-07-31T15:48:50Z <p>C# seems to show some promise for scientific computing, but I found very little about one plotting 2D graphs, which is very important both for science student and scientists.</p> <p>Is there a reliable, free, way to create publication quality 2D plot with C# ? And the capacity to save to several formats (png, eps, ...). Something similar to Python's matplotlib ?</p> http://stackoverflow.com/questions/550371/plotting-with-c/550372#550372 0 Answer by Neil N for Plotting with C# Neil N 2009-02-15T05:31:45Z 2009-02-15T05:31:45Z <p>Well theres GDI+, which is a pretty standard 2D library. (Add a reference to System.Graphics to use GDI+) But for the "publication quality" that you ask for, I'd suggest looking at some of the graphing articles at a site like <a href="http://www.codeproject.com" rel="nofollow">http://www.codeproject.com</a> to get started.</p> http://stackoverflow.com/questions/550371/plotting-with-c/550387#550387 1 Answer by BBetances for Plotting with C# BBetances 2009-02-15T05:46:58Z 2009-02-15T05:46:58Z <p>I starting using the new ASP.NET Chart control a few days ago, and it's absolutely amazing in its capabilities.</p> <p>Here is the link.</p> <p>EDIT: This is obviously only if you using ASP.NET. Not sure about WinForms.</p> http://stackoverflow.com/questions/550371/plotting-with-c/550392#550392 0 Answer by BobbyShaftoe for Plotting with C# BobbyShaftoe 2009-02-15T05:52:06Z 2009-02-15T08:40:17Z <p>NPlot is a pretty good simple open source 2D plotting API. Unfortunately, the web site is down. I don't know if this is just temporary or not. I haven't heard of any bad news. It may come back up.</p> <p><a href="http://www.nplot.com" rel="nofollow">http://www.nplot.com</a></p> <p>Here is an article describing it:</p> <p><a href="http://aspnet.4guysfromrolla.com/articles/072507-1.aspx" rel="nofollow">http://aspnet.4guysfromrolla.com/articles/072507-1.aspx</a></p> <p>The previous article uses VB.NET, but obviously this will work with C#.</p> <p>Again, not sure why nplot's site is not currently working but it is a somewhat popular plotting API that I've used in the past. I post it for your information and in case of the likely event nplot will be back up soon. :)</p> <p>Edit:</p> <p>Thanks to a Hosam Aly, it looks like the SourceForge project can still be accessed here:</p> <p><a href="http://sourceforge.net/projects/nplot" rel="nofollow">http://sourceforge.net/projects/nplot</a></p> http://stackoverflow.com/questions/550371/plotting-with-c/550396#550396 3 Answer by Bob Nadler for Plotting with C# Bob Nadler 2009-02-15T05:56:43Z 2009-02-15T05:56:43Z <p><a href="http://zedgraph.org" rel="nofollow">ZedGraph</a> is a good choice.</p> http://stackoverflow.com/questions/550371/plotting-with-c/550400#550400 2 Answer by gimel for Plotting with C# gimel 2009-02-15T06:06:40Z 2009-02-15T06:06:40Z <p>See <a href="http://code.msdn.microsoft.com/mschart" rel="nofollow">Samples Environment for Microsoft Chart Controls</a>:</p> <blockquote> <p>The samples environment for Microsoft Chart Controls for .NET Framework contains over 200 samples for <strong>both ASP.NET and Windows Forms</strong>. The samples cover every major feature in Chart Controls for .NET Framework. They enable you to see the Chart controls in action as well as use the code as templates for your own web and windows applications.</p> </blockquote> <p>Seems to be more business oriented, but may be of some value to <em>science students and scientists</em>.</p> http://stackoverflow.com/questions/550371/plotting-with-c/1213322#1213322 -1 Answer by Jon Harrop for Plotting with C# Jon Harrop 2009-07-31T15:48:50Z 2009-07-31T15:48:50Z <p>FWIW, you probably want to look at <a href="http://www.ffconsultancy.com/products/fsharp%5Fjournal/free/introduction.html?so" rel="nofollow">F#</a> instead of C# in the context of technical computing because <a href="http://www.ffconsultancy.com/products/fsharp%5Fjournal/free/introduction.html?so" rel="nofollow">F#</a> is specifically designed for that purpose. However, I developed my own commercial plotting library because I was not satisfied with anything freely available on .NET.</p>