Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Plot a graph using .NET

Tags:

c#

graph

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

like image 847
veda Avatar asked Apr 10 '10 06:04

veda


People also ask

What is a graph C#?

Representation Of Graph in C# In graph theory, a graph representation stores a graph in a computer's memory. The collection of vertices and the neighbors of each vertex are required to represent a graph (vertices that are directly connected to it by an edge).

What is chart in asp net?

The DevExpress ASP.NET Chart Control offers a comprehensive collection of 2D and 3D charts to meet the data visualization needs of your end users. The ASP.NET Chart Control provides flexible data binding options that allow you to bind to a table from a database or a collection created in code.

Which namespace is used to create a chart using ASP NET MVC?

Chart class, which combines the namespace ( System. Web. Helpers ) with the class name ( Chart ).


1 Answers

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.

like image 176
Oded Avatar answered Sep 28 '22 16:09

Oded