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 - [TV52014267] This bug is solved in last version of TF02014262
Summary: [TV52014267] This bug is solved in last version of TF02014262
Status: RESOLVED WORKSFORME
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Other Components (show other bugs)
Version: unspecified
Hardware: All All
: Normal major
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-06-29 11:14 EDT by sandra pazos
Modified: 2015-04-16 06:02 EDT (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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)]