adrin
adrin

Reputation: 3848

Live ECG plot in WPF

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

Answers (5)

Nikolai Arsenov
Nikolai Arsenov

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

Micke
Micke

Reputation: 2309

LightningChart is fast enough. It works in WPF according to docs. I've only used it in WinForms though.

Upvotes: 2

adrin
adrin

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

Kelly
Kelly

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

mmr
mmr

Reputation: 14929

I know that Visifire has live updating and a line graph-- I'm not sure if it's fast enough for your needs, though. But it is free until you sell something and opensource.

Upvotes: 0

Related Questions