Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 171

Summary: [TV52014267] This bug is solved in last version of TF02014262
Product: VCL TeeChart Reporter: sandra pazos <sandra>
Component: Other ComponentsAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED WORKSFORME    
Severity: major CC: narcis
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: All   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description sandra pazos 2013-11-20 10:01:38 EST
Bar stacked problems when you there are more one  bar stacked not appears correct because stacked is move the correct position and for example if you have see only two bar appears three bars.  I have added a code for reproduce the problem. 
procedure TForm1.InitializeChart;
var Bar1, Bar2, Bar3, Bar4: TBarSeries;
begin
Chart1.View3D:=false;
Bar1:=TBarSeries.Create(self);
Chart1.AddSeries(Bar1);
Bar1.Marks.Visible:=false;
Bar1.FillSampleValues();
Bar2:=TBarSeries.Create(self);
Chart1.AddSeries(Bar2);
Bar2.Marks.Visible:=false;
Bar2.FillSampleValues();
Bar3:=TBarSeries.Create(self);
Chart1.AddSeries(Bar3);
Bar3.Marks.Visible:=false;
Bar3.FillSampleValues();
Bar4:=TBarSeries.Create(self);
Chart1.AddSeries(Bar4);
Bar4.Marks.Visible:=false;
Bar4.FillSampleValues();
Bar1.MultiBar:=mbStacked;
Chart1.Pages.MaxPointsPerPage:=2;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
 Chart1.Pages.MaxPointsPerPage:=1;
end;
This bug is solved in last version of TF02014262. But occurs in version 9 and version 8 too. [created:2009-06-29T10:14:22.000+01:00 reported by:sandra@steema.com reported in version:8.05.50522 (TeeChart VCL)]