Create a graph using .NET.

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

I want to plot using visual C #. Are there any built-in functions for plotting on visual C # .. If not, how can I do this.

I wanted to create using asp.net

+4
source share
5 answers

There is a package of chart controls from MS that can be used to create graphs on winforms and ASP.NET.

You can download them here . And find out more here .

+8
source

Here is oxyplot

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

+2
source

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

+1
source

Matlab has excellent support for plotting graphs, and with multiple lines of interaction, you can display a .NET array using Matlab runtime .

You can also use IronPython to call MatPlotLib.

0
source

WebControl will fit your needs

0
source

Source: https://habr.com/ru/post/1306545/


All Articles