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 304 - [TV52015745] Using code below, with Smoothed line series, legend's shadow is paint...
Summary: [TV52015745] Using code below, with Smoothed line series, legend's shadow is ...
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Legend (show other bugs)
Version: unspecified
Hardware: All All
: Normal major
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-09-21 11:41 EDT by narcís calvet
Modified: 2013-11-20 10:37 EST (History)
0 users

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 narcís calvet 2013-11-20 10:37:27 EST
Using code below, with Smoothed line series, legend's smoothed shadow is painted over the legend.
uses Series;

procedure TForm1.FormCreate(Sender: TObject);
var Series1: TLineSeries;
 i: Integer;
begin
 Series1:=TLineSeries.Create(Self);
 Chart1.AddSeries(Series1);

 for i:=1 to 12 do
 Series1.AddXY(i, random);

 Series1.Smoothed:=True;
 //Chart1.Legend.Shadow.Smooth:=False;
end;
  [created:2011-09-21T10:41:36.000+01:00 reported by:narcis@steema.com reported in version:2011.03.30407 (TeeChart VCL)]