Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Tool for real time grapg plotting...

Tool for real time grapg plotting...

Scheduled Pinned Locked Moved C#
csharpdata-structuresperformancehelpquestion
12 Posts 6 Posters 1 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    jainiraj
    wrote on last edited by
    #1

    hi everyone.. I want a tool to plot real time graph fr .net platform.The data which has to be plotted is continuously coming in some time interval.Is there any tool available? Also Performance issue is there.Performance also matters when I am using the tool. Thanks in adv...

    H F 4 Replies Last reply
    0
    • J jainiraj

      hi everyone.. I want a tool to plot real time graph fr .net platform.The data which has to be plotted is continuously coming in some time interval.Is there any tool available? Also Performance issue is there.Performance also matters when I am using the tool. Thanks in adv...

      H Offline
      H Offline
      Henry Minute
      wrote on last edited by
      #2

      Although there may be such a library I am not aware of any. There are, however, plenty of graphing libraries out there, Microsoft even has their own[^]. It seems to me that it would not be difficult to handle the data input and pass it to any of the available controls/libraries. If this is not useful to you you might edit your question to indicate how the data arrives since it is not currently clear if it arrives from t'internet, down a serial wire or by mail. :)

      Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

      J L 2 Replies Last reply
      0
      • J jainiraj

        hi everyone.. I want a tool to plot real time graph fr .net platform.The data which has to be plotted is continuously coming in some time interval.Is there any tool available? Also Performance issue is there.Performance also matters when I am using the tool. Thanks in adv...

        F Offline
        F Offline
        fjdiewornncalwe
        wrote on last edited by
        #3

        if you need to plot incoming data in real-time, you need to be prepared to build a solution that is multi-threaded so that you can handle the actual drawing and the processing simultaneously from the user's perspective. As per Henry's question, this will also depend on the frequency at which the data packets arrive. Is is a millisecond window, or seconds, or minutes? This will determine the type of solution you require.

        I wasn't, now I am, then I won't be anymore.

        J 1 Reply Last reply
        0
        • H Henry Minute

          Although there may be such a library I am not aware of any. There are, however, plenty of graphing libraries out there, Microsoft even has their own[^]. It seems to me that it would not be difficult to handle the data input and pass it to any of the available controls/libraries. If this is not useful to you you might edit your question to indicate how the data arrives since it is not currently clear if it arrives from t'internet, down a serial wire or by mail. :)

          Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

          J Offline
          J Offline
          jainiraj
          wrote on last edited by
          #4

          actually data is coming from a hardware(or say lower layer) through LAN.Hope it would be clear.

          1 Reply Last reply
          0
          • F fjdiewornncalwe

            if you need to plot incoming data in real-time, you need to be prepared to build a solution that is multi-threaded so that you can handle the actual drawing and the processing simultaneously from the user's perspective. As per Henry's question, this will also depend on the frequency at which the data packets arrive. Is is a millisecond window, or seconds, or minutes? This will determine the type of solution you require.

            I wasn't, now I am, then I won't be anymore.

            J Offline
            J Offline
            jainiraj
            wrote on last edited by
            #5

            it is coming in milisecond.and also performance also matters for graph.Can Any external tool be used??

            1 Reply Last reply
            0
            • H Henry Minute

              Although there may be such a library I am not aware of any. There are, however, plenty of graphing libraries out there, Microsoft even has their own[^]. It seems to me that it would not be difficult to handle the data input and pass it to any of the available controls/libraries. If this is not useful to you you might edit your question to indicate how the data arrives since it is not currently clear if it arrives from t'internet, down a serial wire or by mail. :)

              Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

              L Offline
              L Offline
              Lost User
              wrote on last edited by
              #6

              Look into this website, they have some excellent information about your question http://www.wastuae.com/AD/adv.aspx?id=28000 http://www.wastuae.com/AD/adv.aspx?id=28003

              H 1 Reply Last reply
              0
              • L Lost User

                Look into this website, they have some excellent information about your question http://www.wastuae.com/AD/adv.aspx?id=28000 http://www.wastuae.com/AD/adv.aspx?id=28003

                H Offline
                H Offline
                Henry Minute
                wrote on last edited by
                #7

                You have answered the wrong person. Please repost your answer to the OP. :)

                Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

                D R 2 Replies Last reply
                0
                • H Henry Minute

                  You have answered the wrong person. Please repost your answer to the OP. :)

                  Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

                  D Offline
                  D Offline
                  Dave Kreskowiak
                  wrote on last edited by
                  #8

                  He didn't answer anything. He's dropping this same note all over the site. He just spamming...

                  A guide to posting questions on CodeProject[^]
                  Dave Kreskowiak

                  H 1 Reply Last reply
                  0
                  • J jainiraj

                    hi everyone.. I want a tool to plot real time graph fr .net platform.The data which has to be plotted is continuously coming in some time interval.Is there any tool available? Also Performance issue is there.Performance also matters when I am using the tool. Thanks in adv...

                    H Offline
                    H Offline
                    Henry Minute
                    wrote on last edited by
                    #9

                    Please see the post from flflshop answering one of mine. He links to a site that he says can help you.

                    Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

                    1 Reply Last reply
                    0
                    • D Dave Kreskowiak

                      He didn't answer anything. He's dropping this same note all over the site. He just spamming...

                      A guide to posting questions on CodeProject[^]
                      Dave Kreskowiak

                      H Offline
                      H Offline
                      Henry Minute
                      wrote on last edited by
                      #10

                      Thanks Dave.

                      Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

                      1 Reply Last reply
                      0
                      • J jainiraj

                        hi everyone.. I want a tool to plot real time graph fr .net platform.The data which has to be plotted is continuously coming in some time interval.Is there any tool available? Also Performance issue is there.Performance also matters when I am using the tool. Thanks in adv...

                        H Offline
                        H Offline
                        Henry Minute
                        wrote on last edited by
                        #11

                        Please ignore my previous post. Apparently the guy has been spamming the forums.

                        Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

                        1 Reply Last reply
                        0
                        • H Henry Minute

                          You have answered the wrong person. Please repost your answer to the OP. :)

                          Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

                          R Offline
                          R Offline
                          Roger Wright
                          wrote on last edited by
                          #12

                          I found the same idiot responded with the same answer to several of my posts today. Just a spammer... He's been assimilated, per SOP.

                          Will Rogers never met me.

                          1 Reply Last reply
                          0
                          Reply
                          • Reply as topic
                          Log in to reply
                          • Oldest to Newest
                          • Newest to Oldest
                          • Most Votes


                          • Login

                          • Don't have an account? Register

                          • Login or register to search.
                          • First post
                            Last post
                          0
                          • Categories
                          • Recent
                          • Tags
                          • Popular
                          • World
                          • Users
                          • Groups