What would be the best (easy and fast) approach to plot live ECG data in a WPF application? I am thinking about writing my own control that would use paths to visualize the signal. But maybe there are ready to use graph libraries that suite my need? Do you have any experience in that area?
+2
A:
You might be able to use Dynamic Data Display. Its very flexible and performance beats all of the commercial products I have tried.
Kelly
2010-05-06 19:08:49
Thanks for the hint, however live plot performance was really below expectations
adrin
2010-06-22 07:30:59
A:
Thanks for all your answers, however all third party components using retained graphics mode were too slow. I've decided to use WritableBitmap with double buffering and unsafe code and an Image control.
adrin
2010-06-22 07:33:14