richardtk_1
richardtk_1

Reputation: 761

DevExpress Real Time Chart for ASP.NET

Is there any example for a Real Time Chart using the DexExpress in ASP.Net?

The data will come from a WCF Service.

I need to simulate a pulse rate chart, updating it every 2 seconds, I checked the demo examples for the DevExpress but I only found a Real Time Grid in ASP.Net and the charts are static.

Any help will be welcomed.

Upvotes: 0

Views: 2351

Answers (1)

msigman
msigman

Reputation: 4524

I do not believe that you could easily configure the DevExpress Chart control to do that out of the box. You could set up an AJAX timer to refresh it every 2 seconds, which is as close as you'll probably get to what you want.

However, might I suggest using this free JavaScript based solution instead. It offers real time functionality by design: http://smoothiecharts.org/tutorial.html

Upvotes: 1

Related Questions