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 580

Summary: Lenged.Symbols countinous property, doesn’t work property by TPointerSeries
Product: VCL TeeChart Reporter: sandra pazos <sandra>
Component: LegendAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: normal CC: david
Priority: High    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description sandra pazos 2014-02-18 12:01:55 EST
The Legend.symbol continuous property doesn't work in correct way by TPointerSeries using current source code, the problem doesn't occur using latest January Beta version and latest maintenance release build 2013.09
To reproduce the problem please checks next code using source code:

uses VCLTee.Series;
procedure TForm1.FormCreate(Sender: TObject);
var Series1:TPointSeries;
begin
Series1 := TPointSeries.Create(Self);
Chart1.AddSeries(Series1);
Series1.FillSampleValues(20);
Chart1.Legend.Symbol.Continuous := True;
end;
Comment 1 sandra pazos 2014-02-19 05:17:14 EST
The problem occurs in the version v2013.06, too.
Comment 2 david berneda 2014-02-26 11:56:20 EST
Fixed. The new code that was adjusting the legend Pointer shape (aspect ratio), was not considering the "Continuous" property.

When Continuous=True, that aspect-ratio correction should not be done.