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 - Lenged.Symbols countinous property, doesn’t work property by TPointerSeries
Summary: Lenged.Symbols countinous property, doesn’t work property by TPointerSeries
Status: RESOLVED FIXED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Legend (show other bugs)
Version: unspecified
Hardware: PC Windows
: High normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-02-18 12:01 EST by sandra pazos
Modified: 2014-02-26 11:56 EST (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 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.