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
  • 6,416
  • 15
  • 58
  • 78

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
  • 489,969
  • 99
  • 883
  • 1,009
2

Here is OxyPlot

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

Community
  • 1
  • 1
MajesticRa
  • 13,770
  • 12
  • 63
  • 77
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
  • 11,306
  • 8
  • 61
  • 68
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
  • 76,540
  • 58
  • 260
  • 305
0

WebControl will fit your needs

GETah
  • 20,922
  • 7
  • 61
  • 103