![]() | Steema Issues DatabaseNote: 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. |
| Summary: | Oblique shadow for round rectangle nodes | ||
|---|---|---|---|
| Product: | VCL TeeChart | Reporter: | yeray alonso <yeray> |
| Component: | TTree | Assignee: | 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 | ||
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.
Created attachment 296 [details]
Tree with rounded shadow node
I guess this issue was already fixed, when the Angle parameter for shadows was wrongly passed as round size. |
Code to reproduce: with Tree1.AddRoot('This is a test shape') do begin Shadow.Visible:=true; Shadow.Size:=5; Style:=tssRoundRectangle; end;