Stacked bars draw incorrectly in 3D

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
PvdE
Newbie
Newbie
Posts: 13
Joined: Tue Aug 16, 2005 4:00 am
Location: Washington, DC

Stacked bars draw incorrectly in 3D

Post by PvdE » Thu Sep 08, 2005 5:59 am

When I generate a chart with the code below, the 3D view is not correct.
Note how on X=1, series2 is next to series 1, but seems to be behind series4.

--Paul

Code: Select all

procedure TForm1.FormCreate(Sender: TObject);
var
   B: integer;
   Bars: array[1..4] of TBarSeries;
begin
for B := 1 to 4
do begin
   Bars[B] := TBarSeries.Create(Chart1);
   Chart1.AddSeries(Bars[B]);
   Bars[B].FillSampleValues(6);
end;
Bars[1].MultiBar := mbStacked;
Bars[2].StackGroup := 1;
Bars[3].StackGroup := 1;
end;


PvdE
Newbie
Newbie
Posts: 13
Joined: Tue Aug 16, 2005 4:00 am
Location: Washington, DC

Post by PvdE » Thu Sep 08, 2005 6:02 am

Please insert

Code: Select all

RandSeed := 1234;
Before the for loop to see what I see :)

--Paul

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

Post by Narcís » Fri Sep 09, 2005 7:24 am

Hi Paul,

Thanks for reporting that issue. I've been able to reproduce it but I can't think of any workaround for now. I've added this defect to our bug list to be fixed for future releases.
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