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
NULL points exported by TeeExport dialog
NULL points exported by TeeExport dialog
franckgar
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);
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);
Pep Jorge
http://support.steema.com
http://support.steema.com