tags:

views:

289

answers:

2

I need to read some data from an input file and plot a graph based on the inputs...

I want to plot a graph using visual C#. Is there any in-built functions to plot a graph in visual C#.. If not, how can I do that..

I wanted to create using asp.net

+6  A: 

There is a pack of charting controls from MS, which can be used for creating graphs on winforms and ASP.NET.

You can download them here. And learn more here.

Oded
+1  A: 

If you are in a web environment there are also lots of ways of drawing graphs directly in the browser, using the CANVAS element or SVG. I prefer gRaphael

James Westgate