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 847

Summary: Oblique shadow for round rectangle nodes
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: TTreeAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED WORKSFORME    
Severity: enhancement CC: buhl, david
Priority: ---    
Version: 140512   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=5&t=15068
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Attachments: Tree with rounded shadow node

Description yeray alonso 2014-07-15 10:33:03 EDT
Code to reproduce:

  with Tree1.AddRoot('This is a test shape') do
  begin
    Shadow.Visible:=true;
    Shadow.Size:=5;
    Style:=tssRoundRectangle;
  end;
Comment 1 david berneda 2014-09-12 13:15:08 EDT
I see the correct shadow, also with this code more clear:

  with Tree1.AddRoot('This is a test shape') do
  begin
    Shadow.Visible:=true;
    Shadow.Transparency:=0;
    Shadow.Size:=5;
    RoundSize:=20;
    Style:=tssRoundRectangle;
  end;


Attached pic.
Comment 2 david berneda 2014-09-12 13:16:11 EDT
Created attachment 296 [details]
Tree with rounded shadow node
Comment 3 david berneda 2014-09-15 03:03:14 EDT
I guess this issue was already fixed, when the Angle parameter for shadows was wrongly passed as round size.