barwidth 8.04->8.06

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Calou
Advanced
Posts: 104
Joined: Wed Nov 19, 2008 12:00 am

barwidth 8.04->8.06

Post by Calou » Wed Sep 09, 2009 3:35 pm

Hello

I have installed the 8.06 verison and now the width of tbarseries is very small. How could i do to have the same behavior than the 8.04 version (all the parameters of the tbarseries was by default)

Regards

Calou
Advanced
Posts: 104
Joined: Wed Nov 19, 2008 12:00 am

Re: barwidth 8.04->8.06

Post by Calou » Wed Sep 09, 2009 4:05 pm

I have found it is because on the same chart i have a TbarSeries and TlineSeries. If i uncheck the TlineSeries the width is ok and if i check the TlineSeries the width change and is not correct for me. This behavior did not exist on the previous version

http://cjoint.com/?jjsd5TlRCm
http://cjoint.com/?jjseVb8yAx

Regards

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: barwidth 8.04->8.06

Post by Narcís » Thu Sep 10, 2009 8:48 am

Hi Calou,

This probably depends on the X values you provided to both series as it works fine using code below where first series is a bar and second is a line.

Code: Select all

procedure TForm4.FormCreate(Sender: TObject);
var i: integer;
begin
  for i := 0 to 10 do
  begin
    Series1.Add(i);
    Series2.Add(i)
  end;
end;
Does this code work fine at your end? If the problem persists please send us a simple example project we can run "as-is" to reproduce the problem here.

Thanks in advance.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Calou
Advanced
Posts: 104
Joined: Wed Nov 19, 2008 12:00 am

Re: barwidth 8.04->8.06

Post by Calou » Thu Sep 10, 2009 9:12 am

Hi,

Yes with your code is good.

With the code below the width change

Code: Select all

procedure TForm1.FormCreate(Sender: TObject);
var i: integer;
begin
  for i := 0 to 10 do
  begin
    Series1.Addxy(i,i);
  end;
  for i := 0 to 20 do
  begin
    Series2.Addxy(i/2,i/2);
  end;
end;

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: barwidth 8.04->8.06

Post by Narcís » Thu Sep 10, 2009 9:49 am

Hi Calou,

Thanks for your feedback. I could reproduce the issue here and added it (TV52014399) to the defect list to be fixed.

BTW: Have you been able to reproduce this using v8.05?

Thanks in advance.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Calou
Advanced
Posts: 104
Joined: Wed Nov 19, 2008 12:00 am

Re: barwidth 8.04->8.06

Post by Calou » Thu Sep 10, 2009 10:00 am

Hello,

I 've never used the 8.05 but in the 8.04 it works good

How could prevent it in 8.06?

Regards

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: barwidth 8.04->8.06

Post by Narcís » Thu Sep 10, 2009 10:24 am

Hi Calou,

I'm sorry but there's not solution I can think of for now.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Calou
Advanced
Posts: 104
Joined: Wed Nov 19, 2008 12:00 am

Re: barwidth 8.04->8.06

Post by Calou » Thu Sep 10, 2009 4:08 pm

:shock:
So i hope that i can reinstall the previous version!

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: barwidth 8.04->8.06

Post by Narcís » Mon Sep 14, 2009 8:27 am

Hi Calou,

Yes, of course, you can uninstall v8.06 and reinstall any previous version. To avoid old references problems be careful removing old version paths from your IDE.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply