hi,
the Export to Excel doesn't work, we can't open the file.
Export Excel
Re: Export Excel
Hello,
We implemented in v2016.19 a new way to export to xlsx for Excel > 2013 (in the ticket #1257).
It works as follows:
We implemented in v2016.19 a new way to export to xlsx for Excel > 2013 (in the ticket #1257).
It works as follows:
Code: Select all
uses TeeExcelSource;
procedure TForm2.Button1Click(Sender: TObject);
Var excelExp : TSeriesDataXLSObject;
begin
excelExp := TSeriesDataXLSObject.Create(TCustomChart(Chart1));
excelExp.IncludeIndex := true;
excelExp.IncludeHeader:= true;
excelExp.IncludeColors := true;
excelExp.IncludeLabels := true;
excelExp.SaveToFile('C:\tmp\excel.xlsx');
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |