TeeChart copy to clipboard does not retain transparency
-
- Newbie
- Posts: 34
- Joined: Tue Nov 04, 2008 12:00 am
TeeChart copy to clipboard does not retain transparency
When using the CopyToClipboardBitmap to capture an area chart containing series that have non-zero transparency attributes, the area series are all opaque in the captured image.
try to switch off double buffering
Try using this:
Code: Select all
procedure Tform1.OnTeeCommanderCopy(Sender: TObject);
begin
Chart1.BufferedDisplay := False;
Chart1.CopyToClipboardBitmap;
Chart1.BufferedDisplay := True;
end;