TSeriesDataText in header last series missing
Posted: Fri Dec 05, 2014 11:01 am
Hi,
Delphi XE5 pro, TeeChart Pro ver 2014.10.140220 32bit VCL
in export data to text there is missing last series in Header line:
// we found possible error ?
unit VCLTee.TeeStore;
line 1038 while t<Chart.SeriesCount-1 do ===> while t<=Chart.SeriesCount-1 do // now it's working ( "<" ==> "<=" )
It also happens in designtime editor: data -> Text (with preview + include header) ... missing last series
thank you, Vojko Čendak
Delphi XE5 pro, TeeChart Pro ver 2014.10.140220 32bit VCL
in export data to text there is missing last series in Header line:
Code: Select all
with TSeriesDataText.Create(chartTRENUTNE,nil) do
try
IncludeHeader := True; // <===
IncludeLabels := True;
IncludeIndex:=false;
CopyToClipboard;
finally
Free;
end;
unit VCLTee.TeeStore;
line 1038 while t<Chart.SeriesCount-1 do ===> while t<=Chart.SeriesCount-1 do // now it's working ( "<" ==> "<=" )
It also happens in designtime editor: data -> Text (with preview + include header) ... missing last series
thank you, Vojko Čendak