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 247

Summary: [TV52016239] Leaking shadow. The shadow isn't clipped with the Bar series. Scroll...
Product: VCL TeeChart Reporter: christopher ireland <chris>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: major    
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: All   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description christopher ireland 2013-11-20 10:34:25 EST
Leaking shadow.
The shadow isn't clipped with the Bar series. Scroll the chart up to see it:
procedure TForm1.FormCreate(Sender: TObject);
var Series1:TBarSeries;
begin
  Series1 := TBarSeries.Create(self);
  Chart1.AddSeries(Series1);
  Chart1.View3D:=False;
  Series1.FillSampleValues;
  With Series1.Shadow do
  begin
    Visible:=True;
    HorizSize:=5;
    VertSize:=15;
  end;
end;
@Yeray:
It seems to behave like this since v8. In v7 there were no Shadows for the TBarSeries.  [created:2012-07-04T17:07:36.000+01:00 reported by:chris@steema.com reported in version:2012.06.120613 (TeeChart VCL)]