Index

Subject: Real-Time ColorGrid
From: tholton@cox.net (Newsgroups)  Steema Software SL
Newsgroup: steema.public.teechartfornet.v1  
Date: Thu, 05 May 2005 07:03:02 +0200


A sample app in the Demo project for C# illustrates the use of the
Series.Delete()
method coupled with the Series.Add() method to scroll data across the
chart.

if(s.Count > 50) s.Delete(0);
...
...
s.Add(newX,newY);

I would like to accomplish the same effect with the ColorGrid.
Can this be done ?

If it can be done , how is the Delete() method applied to the ColorGrid
series ?

I have attempted this but get only strange behavior .

Thanks for your help