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 1670

Summary: Export to xlsx
Product: ActiveX TeeChart Reporter: yeray alonso <yeray>
Component: ExportingAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: enhancement CC: pep
Priority: ---    
Version: TeeChart Pro Activex Control 2016.0.0.2 Release   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:
Attachments: VCL test project

Description yeray alonso 2016-10-28 11:34:11 EDT
Created attachment 660 [details]
VCL test project

In VCL this is possible since we implemented the fix for #1257:
http://bugs.teechart.net/show_bug.cgi?id=1257

  with TSeriesDataXLSObject.Create(Chart1,nil) do
  try
    IncludeIndex:=true;
    IncludeHeader:=true;
    IncludeColors:=true;
    IncludeLabels:=true;
    SaveToFile('C:\tmp\testExcel\VCLtest.xlsx');

  finally
    Free;