views:

140

answers:

4

Hey! I want to display dots and functions in my dotnet app. Can you recommend a good free plotting control for WinForms?

A: 

This question might be of help (ZedGraph comes out well), more to do with plotting graphs though.

Pauk
+4  A: 

MicrosoftChartControls is a free and easy to use library.

Ed Swangren
+1  A: 

ZedGraph

Thomas Levesque
A: 

I'd go with an ordinary PictureBox, and do all the plotting/graphing myself. I've found that mastering 2D graphics in .Net takes about as long as getting the average third-party control to work the way you want it to, and you won't end up with the deployment problems that often result from incorporating licensed third-party components.

MusiGenesis
At a basic level, maybe, but it will take you a lot longer to get the options that an existing library offers than it will to learn the API.
Ed Swangren