Page 1 of 1

NULL points exported by TeeExport dialog

Posted: Mon Nov 15, 2004 9:39 am
by 9339785
Hi!

Points who are defined as NULL are exported by the TeeChart dialog, but these points should not be exported because they are hidden. So is there a solution to export only the points who are not NULL ?

Thanks

Posted: Mon Nov 15, 2004 10:13 am
by Pep
Hi,

one way could be to remove null points before do the export:

var t : Integer;
t:=0;
while t<Series1.Count do
if Series1.IsNull(t) then Series1.Delete(t);