What's the proper way to do high-speed real-time plotting?

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Mark
Newbie
Newbie
Posts: 12
Joined: Mon Jan 26, 2004 5:00 am
Location: Ellicott City, MD

What's the proper way to do high-speed real-time plotting?

Post by Mark » Wed Apr 21, 2004 1:04 am

This way:
fastLine.Clear();
fastLine.Add(x_values, rawData.fData);

Or this way:

fastLine.Clear();
fastLine.DrawAllPoints = false;
fastLine.XValues.Count = x_values.Length;
fastLine.XValues.Value = x_values;
fastLine.YValues.Count = y.Length;
fastLine.YValues.Value = y;
tChart.Refresh();

PLEASE PLEASE Help!

Christopher
Site Admin
Site Admin
Posts: 1349
Joined: Thu Jan 01, 1970 12:00 am
Location: Riudellots de la Selva, Catalonia
Contact:

Post by Christopher » Wed Apr 21, 2004 7:07 am

Hi John,

To answer your specific question, use fastLine.Add() rather than adding the values manually to the ValueLists.

For more details on realtime charting, please read:
http://www.teechart.net/support/modules ... =0&thold=0
Thank you!

Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/

Post Reply