Page 1 of 1
TeeChart copy to clipboard does not retain transparency
Posted: Sat Nov 22, 2008 1:13 am
by 10050727
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
Posted: Wed Nov 26, 2008 12:11 pm
by 10545689
Try using this:
Code: Select all
procedure Tform1.OnTeeCommanderCopy(Sender: TObject);
begin
Chart1.BufferedDisplay := False;
Chart1.CopyToClipboardBitmap;
Chart1.BufferedDisplay := True;
end;