Dear,
I use last version of aspose.cells.
i have to generate xls and pdf files.
for the pdf file i have rendering problem with charts.
see the attached files to see the differences
See following code in VB.NET to save the files :
- For Excel file :
Dim MyOptions As XlsSaveOptions = New XlsSaveOptions(SaveFormat.Excel97To2003)
CurrentWorkbook.Save(System.Web.HttpContext.Current.Response, FileName, ContentDisposition.Attachment, New XlsSaveOptions(SaveFormat.Excel97To2003))
- For PDF file :
Dim PdfOptions As PdfSaveOptions = New PdfSaveOptions(SaveFormat.Pdf)
PdfOptions.ImageType = System.Drawing.Imaging.ImageFormat.Png
CurrentWorkbook.Save(System.Web.HttpContext.Current.Response, FileName, ContentDisposition.Attachment, PdfOptions)
May you help me about that
Best regards