Search code examples
asp.netlinegraph

How to draw a line graph in ASP.NET


I am trying to draw a line graph in ASP.NET. I want to import some data from an excel file and display them in a line chart on the browse.

So far I figured out how to import the data and display them in a grid. Now I want to take it to the next step and draw a line graph using that data.

Please point me in the right direction to some guides on how to draw a line graph in ASP.NET (C# only).


Solution

  • Use .NET Chart Controls

    enter image description here

    A good getting started article: Using Microsoft's Chart Controls In An ASP.NET Application: Getting Started - 4GuysFromRolla.com

    Or for a JavaScript solution use gRaphaël—Charting JavaScript Library

    enter image description here