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