NULL points exported by TeeExport dialog

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
franckgar
Advanced
Posts: 109
Joined: Thu Nov 04, 2004 5:00 am

NULL points exported by TeeExport dialog

Post by franckgar » Mon Nov 15, 2004 9:39 am

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
franckgar

Pep
Site Admin
Site Admin
Posts: 3273
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Mon Nov 15, 2004 10:13 am

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);

Post Reply