Graphing data?

Is there a way to take some data (say an array of integers) and display it in line graph form, defining the labels and axis manually


Answer this question

Graphing data?

  • pinoyz

    That looks pretty good, too.

  • StaticTony

    Zedgraph also shows up here:

    http://www.codeproject.com/csharp/zedgraph.asp



  • Evan Hoff

    Yes. I guess you need more information than that...:)

    You can do it manually by drawing in a Paint event to a Panel/Form/UserControl the points using DrawLine; draw the Axies labels using DrawString, etc. Building your graph the way you want it.

    Or, you can find an existing control: Naional Instruments have a controls package. Or, the 'free' route: NPLOT www.nplot.com

    Depends ho much work/effort/time/cost you want to put into it.



  • Yonglun Li

    Thanks for the link, I'll be using ZedGraph!

  • manick312938

    Hi,

    Have a look at: -

    http://zedgraph.org/wiki/index.php title=Main_Page


    It is very powerful and very easy to use, just have a look at the visual basic examples,if you have any problems please let me know.

    Andy


  • Graphing data?