Page 1 of 1
barwidth 8.04->8.06
Posted: Wed Sep 09, 2009 3:35 pm
by 10050873
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
Re: barwidth 8.04->8.06
Posted: Wed Sep 09, 2009 4:05 pm
by 10050873
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
Re: barwidth 8.04->8.06
Posted: Thu Sep 10, 2009 8:48 am
by narcis
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.
Re: barwidth 8.04->8.06
Posted: Thu Sep 10, 2009 9:12 am
by 10050873
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;
Re: barwidth 8.04->8.06
Posted: Thu Sep 10, 2009 9:49 am
by narcis
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.
Re: barwidth 8.04->8.06
Posted: Thu Sep 10, 2009 10:00 am
by 10050873
Hello,
I 've never used the 8.05 but in the 8.04 it works good
How could prevent it in 8.06?
Regards
Re: barwidth 8.04->8.06
Posted: Thu Sep 10, 2009 10:24 am
by narcis
Hi Calou,
I'm sorry but there's not solution I can think of for now.
Re: barwidth 8.04->8.06
Posted: Thu Sep 10, 2009 4:08 pm
by 10050873
So i hope that i can reinstall the previous version!
Re: barwidth 8.04->8.06
Posted: Mon Sep 14, 2009 8:27 am
by narcis
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.