I have overlapping THighLow series, so I set Transparency := 50
However, Chart.CopyToClipboardBitmap does not properly export these images.
I am using TChartPro 8.05.
Any suggestions for a work-around?
Thanks,
Steve
HighLowSeries with Tranparency - CopyToClipboardBitmap
Re: HighLowSeries with Tranparency - CopyToClipboardBitmap
Hi
Yes, try this that seems to work fine here:
Yes, try this that seems to work fine here:
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
var tmp: TBMPExportFormat;
begin
tmp:= TBMPExportFormat.Create;
tmp.Panel:=Chart1;
tmp.CopyToClipboard;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: HighLowSeries with Tranparency - CopyToClipboardBitmap
Perfect, thanks for *INCREDIBLE* service.
Steve
Steve
Re: HighLowSeries with Tranparency - CopyToClipboardBitmap
Hi Steve,
You're very welcome!
You're very welcome!
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |