TSeriesDataText in header last series missing

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
VojkoCendak
Newbie
Newbie
Posts: 2
Joined: Tue Apr 22, 2014 12:00 am

TSeriesDataText in header last series missing

Post by VojkoCendak » 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:

Code: Select all

  with TSeriesDataText.Create(chartTRENUTNE,nil) do
  try
    IncludeHeader := True;  // <===
    IncludeLabels := True;
    IncludeIndex:=false;
    CopyToClipboard;
  finally
    Free;
  end;
// 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

Yeray
Site Admin
Site Admin
Posts: 9533
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: TSeriesDataText in header last series missing

Post by Yeray » Fri Dec 05, 2014 2:45 pm

Hello,

You are right. I've created the ticket, implemented the fix and closed the ticket:
http://bugs.teechart.net/show_bug.cgi?id=1033

So the next maintenance release will include it.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply