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 2297 - Transparency in the back wall makes the Tiled Backimage to overlap
Summary: Transparency in the back wall makes the Tiled Backimage to overlap
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Chart (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-03-13 07:37 EDT by yeray alonso
Modified: 2020-03-13 07:37 EDT (History)
0 users

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


Attachments
test project and screenshot (342.44 KB, application/x-zip-compressed)
2020-03-13 07:37 EDT, yeray alonso
Details

Note You need to log in before you can comment on or make changes to this bug.
Description yeray alonso 2020-03-13 07:37:27 EDT
Created attachment 932 [details]
test project and screenshot

Test with screenshot project attached.
This is the code to reproduce the problem:

uses TeePNG;

procedure TForm1.CBTRansparentClick(Sender: TObject);
begin
  if CBTRansparent.Checked then
     Chart1.BackWall.Transparency:=50
  else
     Chart1.BackWall.Transparency:=0;
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart1.View3D:=False;

  Chart1.BackImage.LoadFromFile('..\..\steema.png');

  Chart1.BackImageInside:=True;
  Chart1.BackImageMode:=pbmTile;
end;