.Net controls in C#.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi Geeks,

Can anyone suggest me an exhaustive tutorial/free e-book/forum on creating
real-time graphing components in C#? The component should accept data from
serial port (using API functions/events) & plot the same in real-time.
 
"Radhakrishna Banavalikar"
Hi Geeks,

Can anyone suggest me an exhaustive tutorial/free e-book/forum on creating
real-time graphing components in C#? The component should accept data from
serial port (using API functions/events) & plot the same in real-time.

Hi Radhakrishna,

You may want to consider evaluating some of the graphing components
currently on the market, in which case I strongly suggest you download the
free, fully functional trial version of Steema Software's TeeChart for .NET
from:
http://www.steema.com/products/teechart/net/overview.html

This component will allow you to plot binary data in real-time.

Best Regards,

Christopher Ireland
www.steema.com
 
I haven't seen anything that includes graphing *and* serial port. For the
serial port there are some free components on gotdotnet, code project, etc,
and some commercial ones at sax and componentscience. I use transport from
www.componentscience.net and highly recommend it. Once you get the serial
data, you can feed that to the graphics control. I've always rolled my own
custom graphics control, but there are several free ones from the usual
places, and a bunch of commercial ones available. Theres a MS sample under
the PerformanceMonitor (don't know if that's the right name) that graphs the
CPU usage like what TaskManager does.
 
Back
Top