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?
What would be the best (easy and fast) approach to plot live ECG data
Share
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.