Reputation: 3848
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?
Upvotes: 2
Views: 2550
Reputation: 464
LightningChart supports WinForms and WPF to visualize your data fast and easily. ECG plot picture
(I'm a software developer at Arction Ltd, LightningChart development company).
Upvotes: -1
Reputation: 2309
LightningChart is fast enough. It works in WPF according to docs. I've only used it in WinForms though.
Upvotes: 2
Reputation: 3848
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.
Upvotes: 1
Reputation: 3342
You might be able to use Dynamic Data Display. Its very flexible and performance beats all of the commercial products I have tried.
Upvotes: 2