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 - Oblique shadow for round rectangle nodes
Summary: Oblique shadow for round rectangle nodes
Status: RESOLVED WORKSFORME
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: TTree (show other bugs)
Version: 140512
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://www.teechart.net/support/viewt...
Keywords:
Depends on:
Blocks:
 
Reported: 2014-07-15 10:33 EDT by yeray alonso
Modified: 2014-09-15 03:03 EDT (History)
2 users (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments
Tree with rounded shadow node (2.21 KB, image/png)
2014-09-12 13:16 EDT, david berneda
Details

Note You need to log in before you can comment on or make changes to this bug.
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.