charts and graphs

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • David R
    New Member
    • Dec 2008
    • 14

    charts and graphs

    Is there a way to display charts and graphs in my c# windows application?
    I am using .NET Framework 1.1

    Thanks
  • nukefusion
    Recognized Expert New Member
    • Mar 2008
    • 221

    #2
    Version 1.1 of the framework doesn't really have much in the way of built in charting or graph capability unless you write something yourself or use a third party solution.

    There are some fairly good open source options available. I remember using one a year or two back called ZedGraph in a project I was working on. It's stable and fairly capable. If you do a quick search on the .NET you should be able to find reference to some more.

    Comment

    • PRR
      Recognized Expert Contributor
      • Dec 2007
      • 750

      #3
      Originally posted by David R
      Is there a way to display charts and graphs in my c# windows application?
      I am using .NET Framework 1.1

      Thanks
      You could use Office chart component... They are free to use for static graphs display... They come with MS office... Though just for charts you could download
      here
      Article for OWC
      Also have a look at this thread Graphs

      Comment

      • David R
        New Member
        • Dec 2008
        • 14

        #4
        Thanks -
        Does .net 2 or 3 have built-in charting and graphing capabilities?

        Comment

        • nukefusion
          Recognized Expert New Member
          • Mar 2008
          • 221

          #5
          No, but you can download them for .NET 3.5 here

          Comment

          • PRR
            Recognized Expert Contributor
            • Dec 2007
            • 750

            #6
            Originally posted by David R
            Thanks -
            Does .net 2 or 3 have built-in charting and graphing capabilities?
            You could use System.Drawing. .. and make some charts
            "Scott Mitchell"
            There are no in built components (as far as i know ).... Office chart components are free to use for static graphs....they are good for basic stuff...
            Thanks for the new info nukefusion!!!

            Comment

            • Curtis Rutland
              Recognized Expert Specialist
              • Apr 2008
              • 3264

              #7
              If this is a web app, there is a pretty simple API from google that you can use that does all kinds of charts:

              Developer's Guide - Google Chart API - Google Code

              I just discovered this. It's all controlled by the URL query string.

              Comment

              Working...