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 - CopyToClipboard for the different export formats
Summary: CopyToClipboard for the different export formats
Status: RESOLVED FIXED
Alias: None
Product: ActiveX TeeChart
Classification: Unclassified
Component: Exporting (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: yeray alonso
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-12-11 03:10 EST by yeray alonso
Modified: 2023-01-18 01:51 EST (History)
1 user (show)

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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