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 2268

Summary: CopyToClipboard for the different export formats
Product: ActiveX TeeChart Reporter: yeray alonso <yeray>
Component: ExportingAssignee: yeray alonso <yeray>
Status: RESOLVED FIXED    
Severity: enhancement CC: pep
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2019-12-11 03:10:31 EST
In TeeChart VCL you can export to the clipboard using the different image formats supported. Ie:

uses TeeJPEG;

procedure TForm1.Button1Click(Sender: TObject);
begin
  with TJPEGExportFormat.Create do
  begin
    Panel:=Chart1;
    CopyToClipboard;
  end;
end;

However, this is only possible through the editor in ActiveX.
The request consists on having something like this in TeeChart ActiveX:

TChart1.Export.asJPEG.CopyToClipboard
TChart1.Export.asPNG.CopyToClipboard
...
Comment 1 pep jorge 2023-01-18 01:51:42 EST
This feature has been implemented for thenext v2023.0.0.1
Now you will be able to do :

TChart1.Export.CopyToClipboardJPEG
or
TChart1.Export.CopyToClipboardPNG