6

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

veda
  • 5,966
  • 14
  • 54
  • 77

5 Answers5

8

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
  • 477,625
  • 97
  • 867
  • 998
2

Here is OxyPlot

It supports different platforms and rendering targets (wpf, winforms, pdf, etc)

Community
  • 1
  • 1
MajesticRa
  • 13,032
  • 11
  • 58
  • 74
1

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
  • 10,989
  • 7
  • 61
  • 67
0

Matlab has superb support for displaying graphs, and with a few lines of interop you can display a .NET array using the Matlab runtimes.

You could also use IronPython to call MatPlotLib.

Community
  • 1
  • 1
Contango
  • 71,009
  • 55
  • 247
  • 290
0

WebControl will fit your needs

GETah
  • 20,414
  • 7
  • 55
  • 100