views:

169

answers:

4

I'm looking for a way to paint real time measurement data as a curve in a WinForms app. Here is an example of something quite close to what I'm looking for. But is there something more modular out there?

+1  A: 

The example you linked to is open sourced, therefore you can just take the parts you need and modify them accordingly.

You want to know if there is something "more modular", what is more modular than the source code?

Neil N
+1  A: 

Any decent chart control will allow you to continuously update it.

See this question for some suggestions: http://stackoverflow.com/questions/910790/c-charting-reasonble-large-data-set-and-real-time

Greg
A: 

I finally found the Zedgraph-Wikipage I was looking for.

h0b0
A: 

I found out the Zedgraph based realtime chart is not moving smoothly in oscilloscope like rendering. Did you figure some way to make it looks better?

shadowknight
Nothing that wouldn't be mentioned in the link in my own answer. Smooth rendering wasn't that important for my app.
h0b0